aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2011-08-04 13:53:24 +0900
committerJean Chalard <jchalard@google.com>2011-08-04 13:53:24 +0900
commit09e91ee072cebec82a6a9ed5347a21f0d0134138 (patch)
tree370c4c8516234a7cf5860c6c5200337efc99ec0a /java/src
parentbb12dc455b46ef8872db8bbcff370151588f5b44 (diff)
downloadlatinime-09e91ee072cebec82a6a9ed5347a21f0d0134138.tar.gz
latinime-09e91ee072cebec82a6a9ed5347a21f0d0134138.tar.xz
latinime-09e91ee072cebec82a6a9ed5347a21f0d0134138.zip
Remove newly unused code
Bug: 5095140 Change-Id: Ie4322815f029f063dda2925697d6d8f63bfaf6d6
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java b/java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java
deleted file mode 100644
index eb740e111..000000000
--- a/java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2011 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.Context;
-
-import java.util.List;
-import java.util.Locale;
-
-class PrivateBinaryDictionaryGetter {
- private PrivateBinaryDictionaryGetter() {}
- public static List<AssetFileAddress> getDictionaryFiles(Locale locale, Context context) {
- return null;
- }
-}