#649: gfx reading bug fixed

This commit is contained in:
honfika
2014-08-24 09:40:01 +02:00
parent c4fa4f4a23
commit 36d111b8b3
11 changed files with 26 additions and 23 deletions

View File

@@ -175,7 +175,7 @@ public class Deobfuscation {
return null;
}
public static boolean isValidName(String s){
public static boolean isValidName(String s) {
boolean isValid = true;
if (Action.isReservedWord(s)) {
isValid = false;
@@ -198,7 +198,7 @@ public class Deobfuscation {
}
return isValid;
}
public String deobfuscateName(String s, boolean firstUppercase, String usageType, HashMap<String, String> namesMap, RenameType renameType, Map<String, String> selected) {
boolean isValid = true;
if (usageType == null) {