From 8315557d8b1b1e692ce863fb66d68508694c5513 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Wed, 15 May 2024 17:09:11 -0700 Subject: [PATCH] Add deprecation marker to remove warning (in a test) --- .../com/fasterxml/jackson/core/io/BufferRecyclerPoolTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/com/fasterxml/jackson/core/io/BufferRecyclerPoolTest.java b/src/test/java/com/fasterxml/jackson/core/io/BufferRecyclerPoolTest.java index 320ce90991..f7f5b86328 100644 --- a/src/test/java/com/fasterxml/jackson/core/io/BufferRecyclerPoolTest.java +++ b/src/test/java/com/fasterxml/jackson/core/io/BufferRecyclerPoolTest.java @@ -29,6 +29,7 @@ void threadLocal() throws Exception { } @Test + @Deprecated void lockFree() throws Exception { checkBufferRecyclerPoolImpl(JsonRecyclerPools.newLockFreePool(), true, true); }