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

package io.netty.buffer;

final class ReadOnlyAbstractByteBuf extends ReadOnlyByteBuf
{
    ReadOnlyAbstractByteBuf(final AbstractByteBuf buffer) {
        super(buffer);
    }
    
    @Override
    public AbstractByteBuf unwrap() {
        return (AbstractByteBuf)super.unwrap();
    }
    
    @Override
    protected byte _getByte(final int index) {
        return this.unwrap()._getByte(index);
    }
    
    @Override
    protected short _getShort(final int index) {
        return this.unwrap()._getShort(index);
    }
    
    @Override
    protected short _getShortLE(final int index) {
        return this.unwrap()._getShortLE(index);
    }
    
    @Override
    protected int _getUnsignedMedium(final int index) {
        return this.unwrap()._getUnsignedMedium(index);
    }
    
    @Override
    protected int _getUnsignedMediumLE(final int index) {
        return this.unwrap()._getUnsignedMediumLE(index);
    }
    
    @Override
    protected int _getInt(final int index) {
        return this.unwrap()._getInt(index);
    }
    
    @Override
    protected int _getIntLE(final int index) {
        return this.unwrap()._getIntLE(index);
    }
    
    @Override
    protected long _getLong(final int index) {
        return this.unwrap()._getLong(index);
    }
    
    @Override
    protected long _getLongLE(final int index) {
        return this.unwrap()._getLongLE(index);
    }
}
