Skip to content

Commit

Permalink
Another fix CI build error
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 committed Aug 9, 2020
1 parent 788c51f commit b19df4e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/src/main/java/javax/imageio/ImageIO.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import java.awt.image.*;
import javax.imageio.stream.*;
import java.io.*;
import libcore.net.url.*;
import java.lang.reflect.*;
import java.util.jar.*;
import java.util.zip.*;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/net/kdt/pojavlaunch/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ public void onSurfaceCreated(GL10 gl, javax.microedition.khronos.egl.EGLConfig p
try {
Field eglContextField = eglContextImpl.getClass().getDeclaredField("mEGLContext");
eglContextField.setAccessible(true);
eglContext = eglContextField.get(eglContextImpl);
eglContext = (long) eglContextField.get(eglContextImpl);
} catch (Throwable th) {
Tools.showError(MainActivity.this, th, true);
}
Expand Down

0 comments on commit b19df4e

Please sign in to comment.