From e4c36f8ab42bad35c994d53b6829d34f8210df98 Mon Sep 17 00:00:00 2001 From: "chen.ma" Date: Tue, 7 Jun 2022 19:16:10 +0800 Subject: [PATCH] Modify the changeable capacity thread pool name --- .../java/cn/hippo4j/core/executor/support/QueueTypeEnum.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hippo4j-core/src/main/java/cn/hippo4j/core/executor/support/QueueTypeEnum.java b/hippo4j-core/src/main/java/cn/hippo4j/core/executor/support/QueueTypeEnum.java index b05b21ec..1985a9be 100644 --- a/hippo4j-core/src/main/java/cn/hippo4j/core/executor/support/QueueTypeEnum.java +++ b/hippo4j-core/src/main/java/cn/hippo4j/core/executor/support/QueueTypeEnum.java @@ -66,9 +66,9 @@ public enum QueueTypeEnum { PRIORITY_BLOCKING_QUEUE(6, "PriorityBlockingQueue"), /** - * {@link "io.dynamic.threadpool.starter.toolkit.thread.ResizableCapacityLinkedBlockIngQueue"} + * {@link ResizableCapacityLinkedBlockingQueue} */ - RESIZABLE_LINKED_BLOCKING_QUEUE(9, "ResizableCapacityLinkedBlockIngQueue"); + RESIZABLE_LINKED_BLOCKING_QUEUE(9, "ResizableCapacityLinkedBlockingQueue"); public Integer type;