mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-11 07:12:22 +00:00
Added Checkstyle to build process and fixing checkstyle to all com.src.jpexs classes
This commit is contained in:
@@ -276,7 +276,7 @@ public class IdentifiersDeobfuscation {
|
||||
|
||||
public static boolean isValidNameWithSlash(String s, String... exceptions) {
|
||||
if (s.contains(":")) {
|
||||
String pathVar[] = s.split(":");
|
||||
String[] pathVar = s.split(":");
|
||||
if (!isValidSlashPath(pathVar[0], exceptions)) {
|
||||
return false;
|
||||
}
|
||||
@@ -393,7 +393,7 @@ public class IdentifiersDeobfuscation {
|
||||
* @param s Identifier
|
||||
* @param validExceptions Exceptions which are valid (e.g. some reserved
|
||||
* words)
|
||||
* @return
|
||||
* @return Printable identifier
|
||||
*/
|
||||
public static String printIdentifier(boolean as3, String s, String... validExceptions) {
|
||||
if (s == null || s.isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user