mirror of
https://github.com/Eaglercraft-Archive/Eaglercraftx-1.8.8-src.git
synced 2025-06-27 10:28:14 -05:00
Update #18 - Final release, added PBR shaders
This commit is contained in:
@ -29,6 +29,9 @@ public class EaglerInputStream extends ByteArrayInputStream {
|
||||
}
|
||||
|
||||
public static byte[] inputStreamToBytesQuiet(InputStream is) {
|
||||
if(is == null) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
return inputStreamToBytes(is);
|
||||
}catch(IOException ex) {
|
||||
|
Reference in New Issue
Block a user