deobfuscation fix

try..return
This commit is contained in:
Jindra Petřík
2021-01-24 21:15:19 +01:00
parent dabb1880fb
commit 70e421ec06
10 changed files with 90 additions and 12 deletions

View File

@@ -49,10 +49,8 @@ public class DuplicateItem extends GraphTargetItem implements SimpleValue {
@Override
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) throws InterruptedException {
if (!Configuration.displayDupInstructions.get()) {
if (((value instanceof SimpleValue) && (((SimpleValue) value).isSimpleValue())) || !Configuration.displayDupInstructions.get()) {
return value.appendTry(writer, localData);
}
if (((value instanceof SimpleValue) && (((SimpleValue) value).isSimpleValue())) || !Configuration.displayDupInstructions.get()) {
return value.appendTry(writer, localData);
}
writer.append("§§dup(");
value.appendTry(writer, localData);