diff options
author | 2011-09-30 05:46:45 -0700 | |
---|---|---|
committer | 2011-09-30 05:46:45 -0700 | |
commit | bd2eb9b1d8eb3786a6d989b8b99e97cb1d057215 (patch) | |
tree | 2914a235367a7664df15429a404ec1d526705c5e /java/src/com/android/inputmethod/latin | |
parent | b246c2fbb27e603f6f2b3da54662f6fc67dfb6be (diff) | |
parent | 62c7e25e11f021f6640f9170e53b7e86ed537fd8 (diff) | |
download | latinime-bd2eb9b1d8eb3786a6d989b8b99e97cb1d057215.tar.gz latinime-bd2eb9b1d8eb3786a6d989b8b99e97cb1d057215.tar.xz latinime-bd2eb9b1d8eb3786a6d989b8b99e97cb1d057215.zip |
am 62c7e25e: Move SharedPreferencesCompat to com.android.inputmethod.compat
* commit '62c7e25e11f021f6640f9170e53b7e86ed537fd8':
Move SharedPreferencesCompat to com.android.inputmethod.compat
Diffstat (limited to 'java/src/com/android/inputmethod/latin')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SharedPreferencesCompat.java | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/java/src/com/android/inputmethod/latin/SharedPreferencesCompat.java b/java/src/com/android/inputmethod/latin/SharedPreferencesCompat.java deleted file mode 100644 index 1d36c0b98..000000000 --- a/java/src/com/android/inputmethod/latin/SharedPreferencesCompat.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2010 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.android.inputmethod.latin; - -import android.content.SharedPreferences; - -import java.lang.reflect.InvocationTargetException; -import java.lang.reflect.Method; - -/** - * Reflection utils to call SharedPreferences$Editor.apply when possible, - * falling back to commit when apply isn't available. - */ -public class SharedPreferencesCompat { - private static final Method sApplyMethod = findApplyMethod(); - - private static Method findApplyMethod() { - try { - return SharedPreferences.Editor.class.getMethod("apply"); - } catch (NoSuchMethodException unused) { - // fall through - } - return null; - } - - public static void apply(SharedPreferences.Editor editor) { - if (sApplyMethod != null) { - try { - sApplyMethod.invoke(editor); - return; - } catch (InvocationTargetException unused) { - // fall through - } catch (IllegalAccessException unused) { - // fall through - } - } - editor.commit(); - } -} |