mirror of
https://gitee.com/dromara/hutool.git
synced 2025-09-20 02:29:47 +08:00
DelegatedExecutorService 构造方法设置成public
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user