Now installer will set the url of base jar of Forge and LiteLoader.
This commit is contained in:
@@ -195,10 +195,12 @@ class BlockInputStream extends InputStream {
|
||||
filterChain = filters[i].getInputStream(filterChain);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int read() throws IOException {
|
||||
return read(tempBuf, 0, 1) == -1 ? -1 : (tempBuf[0] & 0xFF);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int read(byte[] buf, int off, int len) throws IOException {
|
||||
if (endReached)
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user