Skip to content
Snippets Groups Projects
Commit 48ef72ac authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am 8ff96805: Merge "Eliminate compiler warning" into gingerbread

Merge commit '8ff96805' into gingerbread-plus-aosp

* commit '8ff96805':
  Eliminate compiler warning
parents 259778c3 8ff96805
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment