Fixed deprecation annotations

This commit is contained in:
gregw 2024-07-22 17:12:14 +10:00
parent a0d8f077f4
commit b83eefdca9
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ import org.eclipse.jetty.util.Callback;
* <p>This class is not thread safe and callers must do mutual exclusion.</p>
* @deprecated Use {@link RetainableByteBuffer.DynamicCapacity}
*/
@Deprecated
@Deprecated (forRemoval = true, since = "12.1.0")
public class ByteBufferCallbackAccumulator
{
private final List<Entry> _entries = new ArrayList<>();

View File

@ -194,7 +194,7 @@ public interface ByteBufferPool
* {@link #release() released} when they are consumed.</p>
* @deprecated use {@link RetainableByteBuffer.DynamicCapacity}
*/
@Deprecated (forRemoval = true)
@Deprecated (forRemoval = true, since = "12.1.0")
class Accumulator
{
private final List<RetainableByteBuffer> buffers = new ArrayList<>();