mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 18:11:16 +00:00
do not copy big byte arrays, store only references (ByteArrayRange) e.g in image tags
This commit is contained in:
@@ -42,7 +42,7 @@ public class CommentItem extends GraphTargetItem {
|
||||
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) {
|
||||
writer.append("/* ");
|
||||
for (int i = 0; i < commentLines.length; i++) {
|
||||
if(commentLines[i]==null){
|
||||
if (commentLines[i] == null) {
|
||||
continue;
|
||||
}
|
||||
writer.append(commentLines[i]);
|
||||
|
||||
Reference in New Issue
Block a user