1
0
mirror of synced 2026-04-26 03:28:45 +08:00

🔖 Pre-Releasing / Version tags.

This commit is contained in:
yadong.zhang
2020-08-24 19:30:07 +08:00
parent 6b00783cd9
commit b71b081c96
2 changed files with 3 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ public enum AuthCacheScheduler {
this.scheduler = new ScheduledThreadPoolExecutor(10, r -> new Thread(r, String.format("JustAuth-Task-%s", cacheTaskNumber.getAndIncrement())));
}
private void shutdown() {
public void shutdown() {
if (null != scheduler) {
this.scheduler.shutdown();
}