DelegatedExecutorService 构造方法设置成public

This commit is contained in:
Looly
2023-05-23 16:16:28 +08:00
parent 357c40a454
commit 99c5e13930
2 changed files with 2 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ public class DelegatedExecutorService extends AbstractExecutorService {
*
* @param executor {@link ExecutorService}
*/
DelegatedExecutorService(ExecutorService executor) {
public DelegatedExecutorService(ExecutorService executor) {
Assert.notNull(executor, "executor must be not null !");
e = executor;
}