aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/about/AboutPreferences.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2013-10-09 14:19:24 +0900
committerThe Android Automerger <android-build@android.com>2013-10-09 02:59:32 -0700
commita6a6abc81611023a0159fa678b731367d80d0aa6 (patch)
tree2d8d7a817fa526cd4b9fc9e3e5a3f90544b353b1 /java/src/com/android/inputmethod/latin/about/AboutPreferences.java
parent6862b8192df0c979ebf3a1fd566ede1b0dbd8a82 (diff)
downloadlatinime-a6a6abc81611023a0159fa678b731367d80d0aa6.tar.gz
latinime-a6a6abc81611023a0159fa678b731367d80d0aa6.tar.xz
latinime-a6a6abc81611023a0159fa678b731367d80d0aa6.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.java28
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
+ }
+}