We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4924b5d commit ca72bc5Copy full SHA for ca72bc5
1 file changed
src/main/java/com/laytonsmith/core/functions/ExecutionQueue.java
@@ -83,6 +83,8 @@ public Object call() throws Exception {
83
return null;
84
}
85
});
86
+ } catch(InterruptedException ex) {
87
+ // ignore
88
} catch(Exception ex) {
89
Logger.getLogger(ExecutionQueue.class.getName()).log(Level.SEVERE, null, ex);
90
@@ -163,6 +165,8 @@ public Object call() throws Exception {
163
165
164
166
167
168
169
170
171
172
0 commit comments