Skip to content

Commit b3ae0d7

Browse files
committed
separated multiple catch statement so that it can be compiled with older SDK version
1 parent 677ce13 commit b3ae0d7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/src/com/tns/JsDebugger.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,13 @@ public void close() throws IOException
137137
dbgMessages.clear();
138138
dbgMessages.addAll(compileMessages);
139139
}
140-
catch (IOException | InterruptedException e)
140+
catch (IOException e)
141141
{
142142
e.printStackTrace();
143143
}
144+
catch (InterruptedException e) {
145+
e.printStackTrace();
146+
}
144147
}
145148
}
146149
finally

0 commit comments

Comments
 (0)