mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 12:30:52 +00:00
netbeans inpector fixes
This commit is contained in:
@@ -183,8 +183,8 @@ public class Debugger {
|
||||
String param[] = (ret.contains(";") ? ret.split(";") : new String[]{ret});
|
||||
for (String p : param) {
|
||||
if (p.contains("=")) {
|
||||
String key = p.substring(0, p.indexOf("="));
|
||||
String val = p.substring(p.indexOf("=") + 1);
|
||||
String key = p.substring(0, p.indexOf('='));
|
||||
String val = p.substring(p.indexOf('=') + 1);
|
||||
parameters.put(key, val);
|
||||
} else {
|
||||
parameters.put(p, "true");
|
||||
|
||||
Reference in New Issue
Block a user