mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 15:10:45 +00:00
highlight parameter added
This commit is contained in:
@@ -35,14 +35,14 @@ public class CommaExpressionItem extends GraphTargetItem {
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(List<Object> localData) {
|
||||
public String toString(boolean highlight, List<Object> localData) {
|
||||
String ret = "";
|
||||
boolean first = true;
|
||||
for (GraphTargetItem t : commands) {
|
||||
if (!first) {
|
||||
ret += ", ";
|
||||
}
|
||||
ret += t.toString(localData);
|
||||
ret += t.toString(highlight, localData);
|
||||
first = false;
|
||||
}
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user