Remove atomix.storage.buffer 99/104699/1
authorRobert Varga <robert.varga@pantheon.tech>
Thu, 2 Mar 2023 10:00:10 +0000 (11:00 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Thu, 2 Mar 2023 10:05:18 +0000 (11:05 +0100)
commitcda35098ebb86cf3f3c9ca617cb0831947626984
tree6510eb2ce9e8f0cb410f3058523a1f3402f634d5
parent02fab987268470827386b2982b3487874c62c7b9
Remove atomix.storage.buffer

This package is not used anywhere, remove it. This also removes the need
for atomix.utils.concurrent, which we remove as well.

JIRA: CONTROLLER-2071
Change-Id: I0664f6b12e47b04c2c0531c095b3d6e857081f61
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
41 files changed:
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/AbstractBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/AbstractBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/Buffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/BufferAllocator.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/BufferInput.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/BufferOutput.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/BufferPool.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/ByteBufferBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/ByteBufferBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/Bytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/BytesInput.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/BytesOutput.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/DirectBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/DirectBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/FileBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/FileBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/HeapBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/HeapBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/MappedBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/MappedBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/PooledAllocator.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/ReadOnlyBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/SlicedBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/SwappedBuffer.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/SwappedBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/UnpooledAllocator.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/UnpooledDirectAllocator.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/UnpooledHeapAllocator.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/WrappedBytes.java [deleted file]
third-party/atomix/storage/src/main/java/io/atomix/storage/buffer/package-info.java [deleted file]
third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/BufferTest.java [deleted file]
third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/DirectBufferTest.java [deleted file]
third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/FileBufferTest.java [deleted file]
third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/FileTesting.java [deleted file]
third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/HeapBufferTest.java [deleted file]
third-party/atomix/storage/src/test/java/io/atomix/storage/buffer/MappedBufferTest.java [deleted file]
third-party/atomix/utils/src/main/java/io/atomix/utils/concurrent/ReferenceCounted.java [deleted file]
third-party/atomix/utils/src/main/java/io/atomix/utils/concurrent/ReferenceFactory.java [deleted file]
third-party/atomix/utils/src/main/java/io/atomix/utils/concurrent/ReferenceManager.java [deleted file]
third-party/atomix/utils/src/main/java/io/atomix/utils/concurrent/ReferencePool.java [deleted file]
third-party/atomix/utils/src/main/java/io/atomix/utils/concurrent/package-info.java [deleted file]