Statement unnecessarily nested within else clause.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1606054 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5a1101da75
commit
e3ee532338
|
@ -1109,32 +1109,31 @@ public class ClassUtils {
|
|||
className = StringUtils.deleteWhitespace(className);
|
||||
if (className == null) {
|
||||
return null;
|
||||
}
|
||||
int dim = 0;
|
||||
while (className.startsWith("[")) {
|
||||
dim++;
|
||||
className = className.substring(1);
|
||||
}
|
||||
if (dim < 1) {
|
||||
return className;
|
||||
} else {
|
||||
int dim = 0;
|
||||
while (className.startsWith("[")) {
|
||||
dim++;
|
||||
className = className.substring(1);
|
||||
}
|
||||
if (dim < 1) {
|
||||
return className;
|
||||
if (className.startsWith("L")) {
|
||||
className = className.substring(
|
||||
1,
|
||||
className.endsWith(";")
|
||||
? className.length() - 1
|
||||
: className.length());
|
||||
} else {
|
||||
if (className.startsWith("L")) {
|
||||
className = className.substring(
|
||||
1,
|
||||
className.endsWith(";")
|
||||
? className.length() - 1
|
||||
: className.length());
|
||||
} else {
|
||||
if (className.length() > 0) {
|
||||
className = reverseAbbreviationMap.get(className.substring(0, 1));
|
||||
}
|
||||
if (className.length() > 0) {
|
||||
className = reverseAbbreviationMap.get(className.substring(0, 1));
|
||||
}
|
||||
final StringBuilder canonicalClassNameBuffer = new StringBuilder(className);
|
||||
for (int i = 0; i < dim; i++) {
|
||||
canonicalClassNameBuffer.append("[]");
|
||||
}
|
||||
return canonicalClassNameBuffer.toString();
|
||||
}
|
||||
final StringBuilder canonicalClassNameBuffer = new StringBuilder(className);
|
||||
for (int i = 0; i < dim; i++) {
|
||||
canonicalClassNameBuffer.append("[]");
|
||||
}
|
||||
return canonicalClassNameBuffer.toString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue