NonCachedRandomAccessFileByteReader.java 533 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.internal.io;

import com.adobe.internal.io.ByteReaderWrapperImpl;
import com.adobe.internal.io.ByteWriter;
import com.adobe.internal.io.NonCachedRandomAccessFileByteWriter;
import java.io.IOException;
import java.io.RandomAccessFile;

public class NonCachedRandomAccessFileByteReader
extends ByteReaderWrapperImpl {
    public NonCachedRandomAccessFileByteReader(RandomAccessFile file) throws IOException {
        super(new NonCachedRandomAccessFileByteWriter(file));
    }
}