X-Git-Url: http://gitweb.fperrin.net/?a=blobdiff_plain;f=src%2Fcom%2Fhughes%2Fandroid%2Fdictionary%2Fengine%2FDictionaryV6Writer.java;h=4086407edc52e871bf2235c61ef27e8634be66b4;hb=2fc669d88306d563fc9c899d8d91b25d591692ea;hp=c6049f65f9336f5449b680eae7aa0d7aab1d4805;hpb=90afff1d6372dc45a3c87556252ce48cb9285288;p=DictionaryPC.git diff --git a/src/com/hughes/android/dictionary/engine/DictionaryV6Writer.java b/src/com/hughes/android/dictionary/engine/DictionaryV6Writer.java index c6049f6..4086407 100644 --- a/src/com/hughes/android/dictionary/engine/DictionaryV6Writer.java +++ b/src/com/hughes/android/dictionary/engine/DictionaryV6Writer.java @@ -26,8 +26,6 @@ import java.util.Collections; import java.util.List; import java.util.zip.GZIPOutputStream; -import com.hughes.android.dictionary.engine.Dictionary; - public class DictionaryV6Writer { private final Dictionary d; @@ -204,7 +202,7 @@ public class DictionaryV6Writer { outb.writeBoolean(hasNormalizedForm); if (hasNormalizedForm) outb.writeUTF(e.normalizedToken()); writev6HtmlIndices(outb, dataPos + outb.size(), - prunedRowIdx == null ? e.htmlEntries : Collections.emptyList()); + prunedRowIdx == null ? e.htmlEntries : Collections.emptyList()); } dataPos += outb.size(); outb.flush();