Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 425c3da6 authored by Jonathan Dixon's avatar Jonathan Dixon
Browse files

Fix typo in exception message

Change-Id: I85390d7ceae8f89aadd808600a920a1401ef1c3a
parent 34583fcb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -197,7 +197,7 @@ public class SurfaceTexture {
    public void attachToGLContext(int texName) {
        int err = nativeAttachToGLContext(texName);
        if (err != 0) {
            throw new RuntimeException("Error during detachFromGLContext (see logcat for details)");
            throw new RuntimeException("Error during attachToGLContext (see logcat for details)");
        }
    }