File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/org/byteskript/skript/error Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<groupId >org.byteskript</groupId >
8
8
<artifactId >byteskript</artifactId >
9
- <version >1.0.33 </version >
9
+ <version >1.0.34 </version >
10
10
<name >ByteSkript</name >
11
11
<description >A compiled JVM implementation of the Skript language.</description >
12
12
Original file line number Diff line number Diff line change @@ -62,13 +62,13 @@ public int getLine() {
62
62
@ Override
63
63
public void printStackTrace (PrintStream stream ) {
64
64
if (details == null ) super .printStackTrace (stream );
65
- printStackTrace (new OutputWriter (stream , null ));
65
+ else printStackTrace (new OutputWriter (stream , null ));
66
66
}
67
67
68
68
@ Override
69
69
public void printStackTrace (PrintWriter stream ) {
70
70
if (details == null ) super .printStackTrace (stream );
71
- printStackTrace (new OutputWriter (null , stream ));
71
+ else printStackTrace (new OutputWriter (null , stream ));
72
72
}
73
73
74
74
@ Override
You can’t perform that action at this time.
0 commit comments