Silence InterruptedException when the plugin disables

This commit is contained in:
Luck 2016-11-26 13:21:21 +00:00
parent b7ac7680d9
commit 2893d4aebd
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
2 changed files with 2 additions and 6 deletions

View File

@ -54,9 +54,7 @@ public class DebugHandler {
try {
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}
} catch (InterruptedException ignored) {}
}
});
}

View File

@ -52,9 +52,7 @@ public class PermissionCache {
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
e.printStackTrace();
}
} catch (InterruptedException ignored) {}
}
});
}