Removed Preview Copy

This commit is contained in:
Konloch 2021-07-10 06:46:45 -07:00
parent 5a761cec4a
commit a7e399add9

AI 샘플 코드 생성 중입니다

Loading...

View File

@ -123,11 +123,10 @@ public class ExceptionUI extends JFrame
public static String buildErrorLogHeader(String author) public static String buildErrorLogHeader(String author)
{ {
String fatJar = FAT_JAR ? " [FatJar] " : ""; String fatJar = FAT_JAR ? " [FatJar] " : "";
String previewCopy = PREVIEW_COPY ? " [Preview Copy] " : "";
return "Please send this error log to " + author + 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." + "\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") + ", OS: " + System.getProperty("os.name") +
", Java: " + System.getProperty("java.version"); ", Java: " + System.getProperty("java.version");
} }