]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/TokenRow.java
More compact row list format.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / TokenRow.java
index 6ae67b9fb476fff0e52de4adbe9c5c843d8d36bc..367b207c77345c7921404a7d147584a6bd4d1002 100644 (file)
@@ -28,8 +28,8 @@ public class TokenRow extends RowBase {
     public final boolean hasMainEntry;
 
     TokenRow(final DataInput raf, final int thisRowIndex, final Index index,
-            final boolean hasMainEntry) throws IOException {
-        super(raf, thisRowIndex, index);
+            final boolean hasMainEntry, int extra) throws IOException {
+        super(raf, thisRowIndex, index, extra);
         this.hasMainEntry = hasMainEntry;
     }