]> gitweb.fperrin.net Git - Dictionary.git/commitdiff
Split size statistic a bit more.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sun, 13 Dec 2015 00:08:32 +0000 (01:08 +0100)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sun, 13 Dec 2015 00:08:32 +0000 (01:08 +0100)
src/com/hughes/android/dictionary/engine/Dictionary.java

index 4b64a14ded7b70258a4a7ed6a087f251c67eb531..084546def8d4316042ceb60a87f80d843f960652 100644 (file)
@@ -125,8 +125,9 @@ public class Dictionary implements RAFSerializable<Dictionary> {
         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());