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

Commit 8ff96805 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Eliminate compiler warning" into gingerbread

parents eebe37e8 e7cfc8ab
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -30,8 +30,7 @@ public class SharedPreferencesCompat {

    private static Method findApplyMethod() {
        try {
            Class cls = SharedPreferences.Editor.class;
            return cls.getMethod("apply");
            return SharedPreferences.Editor.class.getMethod("apply");
        } catch (NoSuchMethodException unused) {
            // fall through
        }