summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-10-23 16:34:00 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-10-23 16:37:07 +0900
commit92d073c2fd6cfc02f40f1c5fee30f21dbd370bdc (patch)
treec681504263b43893a0a44fcb6bc0cf4cab9937cd /tools
parentade5ad1dae715081e0131e9ebd266e1e36409f1d (diff)
downloadandroid_packages_inputmethods_LatinIME-92d073c2fd6cfc02f40f1c5fee30f21dbd370bdc.tar.gz
android_packages_inputmethods_LatinIME-92d073c2fd6cfc02f40f1c5fee30f21dbd370bdc.tar.bz2
android_packages_inputmethods_LatinIME-92d073c2fd6cfc02f40f1c5fee30f21dbd370bdc.zip
Remove unused import and method
Bug: 18003991 Change-Id: Id6b67bf66b397301e5186826dba2b60df9cb4c65
Diffstat (limited to 'tools')
-rw-r--r--tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java b/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
index e04751ddc..8f9e4a3a6 100644
--- a/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
+++ b/tools/dicttool/src/com/android/inputmethod/latin/dicttool/DictionaryMaker.java
@@ -27,7 +27,6 @@ import com.android.inputmethod.latin.makedict.UnsupportedFormatException;
import com.android.inputmethod.latin.makedict.Ver2DictEncoder;
import com.android.inputmethod.latin.makedict.Ver4DictEncoder;
-import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
@@ -253,14 +252,6 @@ public class DictionaryMaker {
}
}
- private static BufferedInputStream getBufferedFileInputStream(final String filename)
- throws FileNotFoundException {
- if (filename == null) {
- return null;
- }
- return new BufferedInputStream(new FileInputStream(filename));
- }
-
/**
* Invoke the right output method according to args.
*