Fix compile

This commit is contained in:
Albumen Kevin 2024-06-28 19:19:49 +08:00
parent ee7b13726f
commit fbacaf1673
1 changed files with 1 additions and 1 deletions

View File

@ -553,7 +553,7 @@ public class FileSystemDynamicConfiguration extends TreePathDynamicConfiguration
}
protected ThreadPoolExecutor getWorkersThreadPool() {
return super.getWorkersThreadPool();
return (ThreadPoolExecutor) super.getWorkersThreadPool();
}
private <V> V executeMutually(final Object mutex, Callable<V> callable) {