aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/about/AboutPreferences.java
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2013-10-08 22:50:13 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-10-08 22:50:13 -0700
commit7b4703402e2cc999a20fc3f40eb165a0c6cc2da9 (patch)
tree145a626d8d6362d855292805ff92f0f167cbde12 /java/src/com/android/inputmethod/latin/about/AboutPreferences.java
parenta8285a2425865ec617ae6c3d0fd22208ffc5ef17 (diff)
parent83994ad66b337276c8ba18249a1c5d52540eeef3 (diff)
downloadlatinime-7b4703402e2cc999a20fc3f40eb165a0c6cc2da9.tar.gz
latinime-7b4703402e2cc999a20fc3f40eb165a0c6cc2da9.tar.xz
latinime-7b4703402e2cc999a20fc3f40eb165a0c6cc2da9.zip
am 83994ad6: Merge "Fix the security related API change for PreferenceActivity"
* commit '83994ad66b337276c8ba18249a1c5d52540eeef3': Fix the security related API change for PreferenceActivity
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
+ }
+}