SteamWar/SpigotCore
Archiviert
13
0

Improve CommandFramework Exception readability
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2022-01-03 00:51:28 +01:00
Ursprung 3c55c1680e
Commit 36f782f1de

Datei anzeigen

@ -55,7 +55,6 @@ public class CommandFrameworkException extends RuntimeException {
for (int i = 0; i < stackTraceElements.length - invocationTargetException.getStackTrace().length; i++) {
st.append("\tat ").append(stackTraceElements[i].toString()).append("\n");
}
st.append("\n");
message = st.toString();
return message;
}