diff options
author | 2011-08-03 22:47:27 -0700 | |
---|---|---|
committer | 2011-08-03 22:47:27 -0700 | |
commit | 8289dede0aa387d6314d7c585407c5505badb582 (patch) | |
tree | 9ce27cba3ea4143077315bbe7f943af9065384b6 /java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java | |
parent | 54cb04e03f32ee79fa90ee77127ad77648701096 (diff) | |
parent | 09e91ee072cebec82a6a9ed5347a21f0d0134138 (diff) | |
download | latinime-8289dede0aa387d6314d7c585407c5505badb582.tar.gz latinime-8289dede0aa387d6314d7c585407c5505badb582.tar.xz latinime-8289dede0aa387d6314d7c585407c5505badb582.zip |
Merge "Remove newly unused code"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/PrivateBinaryDictionaryGetter.java | 29 |
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; - } -} |