mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-07 02:38:23 +00:00
#649: gfx reading bug fixed
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user