add ctor for consistency
This commit is contained in:
parent
5fc148381a
commit
6215390408
|
@ -90,6 +90,10 @@ public class ANTLRInputStream implements CharStream {
|
|||
this(new InputStreamReader(input), size);
|
||||
}
|
||||
|
||||
public ANTLRInputStream(InputStream input, int size, int readChunkSize) throws IOException {
|
||||
this(new InputStreamReader(input), size, readChunkSize);
|
||||
}
|
||||
|
||||
public void load(Reader r, int size, int readChunkSize)
|
||||
throws IOException
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue