]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/TextEntry.java
Apply astyle code formattting.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / TextEntry.java
index 88188ded58cbd4917fb59d4b4a9fbcc767e53bae..a3fc0e28a76477885480fd90fca13b92474deec3 100644 (file)
@@ -30,7 +30,7 @@ public class TextEntry extends AbstractEntry implements RAFSerializable<TextEntr
     final String text;
 
     public TextEntry(final Dictionary dictionary, final DataInput raf, final int index)
-            throws IOException {
+    throws IOException {
         super(dictionary, raf, index);
         text = raf.readUTF();
         throw new RuntimeException("TextEntry constructor should be unreachable");
@@ -76,7 +76,7 @@ public class TextEntry extends AbstractEntry implements RAFSerializable<TextEntr
     public static class Row extends RowBase {
 
         Row(final DataInput raf, final int thisRowIndex,
-                final Index index, int extra) throws IOException {
+            final Index index, int extra) throws IOException {
             super(raf, thisRowIndex, index, extra);
         }
 
@@ -96,8 +96,8 @@ public class TextEntry extends AbstractEntry implements RAFSerializable<TextEntr
 
         @Override
         public RowMatchType matches(final List<String> searchTokens,
-                final Pattern orderedMatchPattern, Transliterator normalizer,
-                boolean swapPairEntries) {
+                                    final Pattern orderedMatchPattern, Transliterator normalizer,
+                                    boolean swapPairEntries) {
             return null;
         }
     }