mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 11:10:50 +00:00
highlight parameter added
This commit is contained in:
@@ -49,7 +49,7 @@ public class LoadVariablesActionItem extends ActionItem {
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants) {
|
||||
public String toString(boolean highlight, ConstantPool constants) {
|
||||
String methodStr = "";
|
||||
if (method == 1) {
|
||||
methodStr = ",\"GET\"";
|
||||
@@ -57,7 +57,7 @@ public class LoadVariablesActionItem extends ActionItem {
|
||||
if (method == 2) {
|
||||
methodStr = ",\"POST\"";
|
||||
}
|
||||
return hilight("loadVariables(") + urlString.toString(constants) + hilight(",") + targetString.toString(constants) + hilight(methodStr + ")");
|
||||
return hilight("loadVariables(", highlight) + urlString.toString(highlight, constants) + hilight(",", highlight) + targetString.toString(highlight, constants) + hilight(methodStr + ")", highlight);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user