code-ferry opened a new pull request #325:
URL: https://github.com/apache/commons-io/pull/325


   When the argument is IOCase.SENSITIVE, I think the static method 
isCaseSensitive should return true.
   
   I did the following test with the code.
   
   `public void testIsCaseSensitive() {
     // return true. I think it is right.
     boolean b1 = IOCase.SENSITIVE.isCaseSensitive();
     System.out.println(b1);
   
     // but invoke static method and return false.
     boolean b2 = IOCase.isCaseSensitive(IOCase.SENSITIVE);
     System.out.println(b2);
   }`


-- 
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]


Reply via email to