Fixed a couple literals in CrashReports

This commit is contained in:
OLEGSHA 2020-11-24 13:53:53 +03:00
parent e3315f62a8
commit 64390347a8

View File

@ -182,7 +182,7 @@ public class CrashReports {
private static void export(String report) {
try {
LOGGER.fatal("/n" + report);
LOGGER.fatal("\n" + report);
} catch (Exception e) {
// PLAK
}
@ -225,8 +225,6 @@ public class CrashReports {
}
private static void addSeparator(StringBuilder sb) {
sb.append(
// 80 chars
"--------------------------------------------------------------------------------").append("\n");
sb.append(StringUtil.sequence('-', 80)).append("\n");
}
}