InputStreamByteReader.java
682 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.InputStreamByteWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.RandomAccessFile;
public class InputStreamByteReader
extends ByteReaderWrapperImpl {
public InputStreamByteReader(InputStream inputStream) throws IOException {
super(new InputStreamByteWriter(inputStream));
}
public InputStreamByteReader(InputStream inputStream, RandomAccessFile raf) throws IOException {
super(new InputStreamByteWriter(inputStream, raf));
}
}