Fixed small bug in getClassType() function.

This commit is contained in:
Ilya Mizus 2014-10-11 23:36:14 +04:00
parent 022be0c370
commit 75dda14691

View File

@ -539,7 +539,7 @@ public final class Class <T>
if (skipDigits == chars.length) {
return ClassType.ANONYMOUS;
} else if (skipDigits > dollar + 1) {
} else if (skipDigits == dollar + 1) {
return ClassType.MEMBER;
} else {
return ClassType.LOCAL;