Silence InterruptedException when the plugin disables

This commit is contained in:
Luck
2016-11-26 13:21:21 +00:00
Unverified
parent b7ac7680d9
commit 2893d4aebd
2 changed files with 2 additions and 6 deletions
@@ -54,9 +54,7 @@ public class DebugHandler {
try {
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}
} catch (InterruptedException ignored) {}
}
});
}
@@ -52,9 +52,7 @@ public class PermissionCache {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
} catch (InterruptedException ignored) {}
}
});
}