Statement unnecessarily nested within else clause.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1606056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2014-06-27 12:28:05 +00:00
parent e3ee532338
commit 0ef747156b
1 changed files with 16 additions and 17 deletions

View File

@ -1117,7 +1117,7 @@ private static String getCanonicalName(String className) {
}
if (dim < 1) {
return className;
} else {
}
if (className.startsWith("L")) {
className = className.substring(
1,
@ -1135,7 +1135,6 @@ private static String getCanonicalName(String className) {
}
return canonicalClassNameBuffer.toString();
}
}
/**
* Get an {@link Iterable} that can iterate over a class hierarchy in ascending (subclass to superclass) order,