diff options
author | 2013-10-09 14:19:24 +0900 | |
---|---|---|
committer | 2013-10-09 14:34:06 +0900 | |
commit | 64f64bdf58ebcfb412c810646eb12e22b586aa87 (patch) | |
tree | d95c0b81e9eeb92229a36ec90e58ac6dda262870 /java/src/com/android/inputmethod/latin/about/AboutPreferences.java | |
parent | d823988b5384561b3ec8149be03e99c9661c2ade (diff) | |
download | latinime-64f64bdf58ebcfb412c810646eb12e22b586aa87.tar.gz latinime-64f64bdf58ebcfb412c810646eb12e22b586aa87.tar.xz latinime-64f64bdf58ebcfb412c810646eb12e22b586aa87.zip |
Fix the security related API change for PreferenceActivity
Bug: 10118761
Change-Id: I63501d6c2b5f561d7ab8b7362498665d805d5e1e
Diffstat (limited to 'java/src/com/android/inputmethod/latin/about/AboutPreferences.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/about/AboutPreferences.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/about/AboutPreferences.java b/java/src/com/android/inputmethod/latin/about/AboutPreferences.java new file mode 100644 index 000000000..f60b189f1 --- /dev/null +++ b/java/src/com/android/inputmethod/latin/about/AboutPreferences.java @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2013 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.about; + +import android.app.Fragment; + +/** + * Dummy class of AboutPreferences. Never use this. + */ +public final class AboutPreferences extends Fragment { + private AboutPreferences() { + // Prevents this from being instantiated + } +} |