From d49defac75ad787fd40632d60f8acc9e440773c4 Mon Sep 17 00:00:00 2001 From: Mario Fusco Date: Tue, 9 Jan 2024 19:21:19 +0100 Subject: [PATCH] Document why HybridJacksonPool has to be public --- src/main/java/io/vertx/core/json/jackson/HybridJacksonPool.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/io/vertx/core/json/jackson/HybridJacksonPool.java b/src/main/java/io/vertx/core/json/jackson/HybridJacksonPool.java index faa916bfd90..ef514afd559 100644 --- a/src/main/java/io/vertx/core/json/jackson/HybridJacksonPool.java +++ b/src/main/java/io/vertx/core/json/jackson/HybridJacksonPool.java @@ -29,6 +29,8 @@ * recalculating the position of that bucket also during the release. The heads of the linked lists are hold in an * {@link AtomicReferenceArray} where each head has a distance of 16 positions from the adjacent ones to prevent * the false sharing problem. + *

+ * This class is public in order to allow its reuse also in other projects. */ public class HybridJacksonPool implements RecyclerPool {