#962 Code formatting issue + getName: pass null value in fullyQualifiedName parameter instead of new array list. getName already accepts null

This commit is contained in:
honfika@gmail.com
2015-07-11 09:10:20 +02:00
parent d202654ea7
commit cabb490c3e
13 changed files with 123 additions and 119 deletions

View File

@@ -347,7 +347,7 @@ public class IdentifiersDeobfuscation {
nameCache.put(pkg, pkg);
return pkg;
}
String[] parts = null;
String[] parts;
if (pkg.contains(".")) {
parts = pkg.split("\\.");
} else {