From a7e399add95a1b423c49c9762805f372577b3e95 Mon Sep 17 00:00:00 2001 From: Konloch Date: Sat, 10 Jul 2021 06:46:45 -0700 Subject: [PATCH] Removed Preview Copy --- .../java/the/bytecode/club/bytecodeviewer/api/ExceptionUI.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/api/ExceptionUI.java b/src/main/java/the/bytecode/club/bytecodeviewer/api/ExceptionUI.java index ea6ba602..e4071f3a 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/api/ExceptionUI.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/api/ExceptionUI.java @@ -123,11 +123,10 @@ public class ExceptionUI extends JFrame public static String buildErrorLogHeader(String author) { String fatJar = FAT_JAR ? " [FatJar] " : ""; - String previewCopy = PREVIEW_COPY ? " [Preview Copy] " : ""; return "Please send this error log to " + author + "\nIf you hold appropriate legal rights to the relevant class/jar/apk file please include that as well." + - "\nBytecode Viewer Version: " + VERSION + previewCopy + fatJar + + "\nBytecode Viewer Version: " + VERSION + fatJar + ", OS: " + System.getProperty("os.name") + ", Java: " + System.getProperty("java.version"); }