Philzen opened a new pull request, #552:
URL: https://github.com/apache/commons-io/pull/552
Not sure if this is is a bug or a feature – what i can confirm is that in
v2.4 it worked as it said in the description:
```java
@Test void returnsHomeWithTrailingSlash_forHomeWithTrailingSlash() {
assertThat(FilenameUtils.getFullPathNoEndSeparator("C:")).isEqualTo("C:");
}
```
After upgrading to 2.15.1, i realized my test suite failed, the behaviour is
now:
```java
@Test void returnsHomeWithTrailingSlash_forHomeWithTrailingSlash() {
assertThat(FilenameUtils.getFullPathNoEndSeparator("C:")).isEqualTo("");
}
```
This PR proposes to reflect this change in the javadoc.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]