You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ReadAllBytes is introduced in Java9, Since you're already inluding Apache Commons IO, I think you can replace it with the following and avoid the Java9 Dependency.
byte[] decompressed = IOUtils.toByteArray(gunzipStream);
The text was updated successfully, but these errors were encountered:
ure/src/main/java/ure/ui/RexFile.java
Line 45 in cac23dc
ReadAllBytes is introduced in Java9, Since you're already inluding Apache Commons IO, I think you can replace it with the following and avoid the Java9 Dependency.
byte[] decompressed = IOUtils.toByteArray(gunzipStream);
The text was updated successfully, but these errors were encountered: