mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-31 19:54:37 +00:00
do not copy big byte arrays, store only references (ByteArrayRange) e.g in image tags
This commit is contained in:
@@ -61,7 +61,6 @@ public class Helper {
|
||||
public static String newLine = System.getProperty("line.separator");
|
||||
public static String decompilationErrorAdd = null;
|
||||
|
||||
|
||||
/**
|
||||
* Converts array of int values to string
|
||||
*
|
||||
@@ -809,7 +808,7 @@ public class Helper {
|
||||
writer.appendNoHilight("/*").newLine();
|
||||
writer.appendNoHilight(" * ").appendNoHilight(AppResources.translate("decompilationError")).newLine();
|
||||
writer.appendNoHilight(" * ").appendNoHilight(AppResources.translate("decompilationError.obfuscated")).newLine();
|
||||
if(decompilationErrorAdd!=null){
|
||||
if (decompilationErrorAdd != null) {
|
||||
writer.appendNoHilight(" * ").appendNoHilight(decompilationErrorAdd).newLine();
|
||||
}
|
||||
writer.appendNoHilight(" * ").appendNoHilight(AppResources.translate("decompilationError.errorType")).
|
||||
|
||||
Reference in New Issue
Block a user