mirror of
https://gitee.com/dromara/hutool.git
synced 2025-05-07 14:18:05 +08:00
DelegatedExecutorService 构造方法设置成public
This commit is contained in:
parent
357c40a454
commit
99c5e13930
@ -15,6 +15,7 @@
|
|||||||
* 【core 】 FileTypeUtil.getType增加文件判断(pr#3112@Github)
|
* 【core 】 FileTypeUtil.getType增加文件判断(pr#3112@Github)
|
||||||
* 【core 】 增加CsvWriteConfig.setEndingLineBreak配置项(issue#I75K5G@Gitee)
|
* 【core 】 增加CsvWriteConfig.setEndingLineBreak配置项(issue#I75K5G@Gitee)
|
||||||
* 【core 】 增加Tailer追踪文件时文件被删除的处理情况(pr#3115@Github)
|
* 【core 】 增加Tailer追踪文件时文件被删除的处理情况(pr#3115@Github)
|
||||||
|
* 【core 】 DelegatedExecutorService构造方法设置成public(issue#I77LUE@Gitee)
|
||||||
|
|
||||||
### 🐞Bug修复
|
### 🐞Bug修复
|
||||||
* 【core 】 修复URLUtil.decode无法解码UTF-16问题(issue#3063@Github)
|
* 【core 】 修复URLUtil.decode无法解码UTF-16问题(issue#3063@Github)
|
||||||
|
@ -25,7 +25,7 @@ public class DelegatedExecutorService extends AbstractExecutorService {
|
|||||||
*
|
*
|
||||||
* @param executor {@link ExecutorService}
|
* @param executor {@link ExecutorService}
|
||||||
*/
|
*/
|
||||||
DelegatedExecutorService(ExecutorService executor) {
|
public DelegatedExecutorService(ExecutorService executor) {
|
||||||
Assert.notNull(executor, "executor must be not null !");
|
Assert.notNull(executor, "executor must be not null !");
|
||||||
e = executor;
|
e = executor;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user