mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 03:40:55 +00:00
highlight parameter added
This commit is contained in:
@@ -2155,12 +2155,12 @@ public class Graph {
|
||||
* @param localData
|
||||
* @return String
|
||||
*/
|
||||
public static String graphToString(List<GraphTargetItem> tree, Object... localData) {
|
||||
public static String graphToString(List<GraphTargetItem> tree, boolean highlight, Object... localData) {
|
||||
StringBuilder ret = new StringBuilder();
|
||||
List<Object> localDataList = Arrays.asList(localData);
|
||||
for (GraphTargetItem ti : tree) {
|
||||
if (!ti.isEmpty()) {
|
||||
ret.append(ti.toStringSemicoloned(localDataList));
|
||||
ret.append(ti.toStringSemicoloned(highlight, localDataList));
|
||||
ret.append("\r\n");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user