mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
DelegatedExecutorService 构造方法设置成public
This commit is contained in:
@@ -37,7 +37,7 @@ public class DelegatedExecutorService extends AbstractExecutorService {
|
|||||||
*
|
*
|
||||||
* @param executor {@link ExecutorService}
|
* @param executor {@link ExecutorService}
|
||||||
*/
|
*/
|
||||||
DelegatedExecutorService(final ExecutorService executor) {
|
public DelegatedExecutorService(final ExecutorService executor) {
|
||||||
Assert.notNull(executor, "executor must be not null !");
|
Assert.notNull(executor, "executor must be not null !");
|
||||||
e = executor;
|
e = executor;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user