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