Fixing javadoc to refer to CharSequence after API change

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@930815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2010-04-05 07:56:44 +00:00
parent ebe7f51668
commit 95e1aaebc2
1 changed files with 2 additions and 2 deletions

View File

@ -1652,7 +1652,7 @@ public void testEMPTY() {
}
/**
* Test for {@link StringUtils#isAllLowerCase(String)}.
* Test for {@link StringUtils#isAllLowerCase(CharSequence)}.
*/
public void testIsAllLowerCase() {
assertFalse(StringUtils.isAllLowerCase(null));
@ -1663,7 +1663,7 @@ public void testIsAllLowerCase() {
}
/**
* Test for {@link StringUtils#isAllUpperCase(String)}.
* Test for {@link StringUtils#isAllUpperCase(CharSequence)}.
*/
public void testIsAllUpperCase() {
assertFalse(StringUtils.isAllUpperCase(null));