Fixed a couple literals in CrashReports
This commit is contained in:
parent
e3315f62a8
commit
64390347a8
@ -182,7 +182,7 @@ public class CrashReports {
|
|||||||
|
|
||||||
private static void export(String report) {
|
private static void export(String report) {
|
||||||
try {
|
try {
|
||||||
LOGGER.fatal("/n" + report);
|
LOGGER.fatal("\n" + report);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// PLAK
|
// PLAK
|
||||||
}
|
}
|
||||||
@ -225,8 +225,6 @@ public class CrashReports {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void addSeparator(StringBuilder sb) {
|
private static void addSeparator(StringBuilder sb) {
|
||||||
sb.append(
|
sb.append(StringUtil.sequence('-', 80)).append("\n");
|
||||||
// 80 chars
|
|
||||||
"--------------------------------------------------------------------------------").append("\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user