DelegatedExecutorService 构造方法设置成public

This commit is contained in:
Looly 2023-05-23 16:16:53 +08:00
parent 0c09c5f101
commit 11517597d4

View File

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