mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 15:20:47 +00:00
highlight parameter added
This commit is contained in:
@@ -45,13 +45,13 @@ public class FSCommand2ActionItem extends ActionItem {
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
public String toString(boolean highlight, ConstantPool constants) {
|
||||
String paramStr = "";
|
||||
for (int t = 0; t < arguments.size(); t++) {
|
||||
paramStr += ",";
|
||||
paramStr += arguments.get(t).toString(constants);
|
||||
paramStr += arguments.get(t).toString(highlight, constants);
|
||||
}
|
||||
return hilight("FSCommand2(") + command.toString(constants) + paramStr + hilight(")");
|
||||
return hilight("FSCommand2(", highlight) + command.toString(highlight, constants) + paramStr + hilight(")", highlight);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user