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

Commit e55d78ab authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Stop swallowing an UnsatisfiedLinkError

Change-Id: I37d61274e1527229befabae2c392fd78e279b807
parent d28858eb
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -31,11 +31,7 @@ public class JniUtils {
        try {
            System.loadLibrary(JniLibName.JNI_LIB_NAME);
        } catch (UnsatisfiedLinkError ule) {
            Log.e(TAG, "Could not load native library " + JniLibName.JNI_LIB_NAME);
            if (LatinImeLogger.sDBG) {
                throw new RuntimeException(
                        "Could not load native library " + JniLibName.JNI_LIB_NAME);
            }
            Log.e(TAG, "Could not load native library " + JniLibName.JNI_LIB_NAME, ule);
        }
    }
}