// 
// Decompiled by Procyon v0.6.0
// 

package com.github.luben.zstd;

import java.nio.ByteBuffer;

public class NoPool implements BufferPool
{
    public static final BufferPool INSTANCE;
    
    private NoPool() {
    }
    
    @Override
    public ByteBuffer get(final int capacity) {
        return ByteBuffer.allocate(capacity);
    }
    
    @Override
    public void release(final ByteBuffer byteBuffer) {
    }
    
    static {
        INSTANCE = new NoPool();
    }
}
