From: Reimar Döffinger Date: Sun, 13 Dec 2015 00:08:32 +0000 (+0100) Subject: Split size statistic a bit more. X-Git-Url: http://gitweb.fperrin.net/?p=Dictionary.git;a=commitdiff_plain;h=a3e21830d470aa83f8f148baaff7de73a28e0cba Split size statistic a bit more. --- diff --git a/src/com/hughes/android/dictionary/engine/Dictionary.java b/src/com/hughes/android/dictionary/engine/Dictionary.java index 4b64a14..084546d 100644 --- a/src/com/hughes/android/dictionary/engine/Dictionary.java +++ b/src/com/hughes/android/dictionary/engine/Dictionary.java @@ -125,8 +125,9 @@ public class Dictionary implements RAFSerializable { RAFList.write(raf, pairEntries, new PairEntry.Serializer(this), 64, true); System.out.println("text start: " + raf.getFilePointer()); RAFList.write(raf, textEntries, new TextEntry.Serializer(this)); - System.out.println("html start: " + raf.getFilePointer()); + System.out.println("html index start: " + raf.getFilePointer()); RAFList.write(raf, htmlEntries, new HtmlEntry.Serializer(this), 64, true); + System.out.println("html data start: " + raf.getFilePointer()); assert htmlData == null; RAFList.write(raf, htmlEntries, new HtmlEntry.DataSerializer(), 128, true); System.out.println("indices start: " + raf.getFilePointer());