mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 01:51:10 +00:00
highlight parameter added
This commit is contained in:
@@ -36,8 +36,8 @@ public class StringExtractActionItem extends ActionItem {
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
return value.toString(constants) + ".substr(" + index.toString(constants) + "," + count.toString(constants) + ")";
|
||||
public String toString(boolean highlight, ConstantPool constants) {
|
||||
return value.toString(highlight, constants) + ".substr(" + index.toString(highlight, constants) + "," + count.toString(highlight, constants) + ")";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user