]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/EntryTypeName.java
Apply astyle code formattting.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / EntryTypeName.java
index de77e3c013d0692ac1edf88b890e5be5d193e2f2..4206265397e05a12b2fea5e492a193ac75e23559 100644 (file)
@@ -57,7 +57,7 @@ public enum EntryTypeName {
     // The next two are how we file entries like: "sono: {form of|essere}" under
     // "essere".
     WIKTIONARY_BASE_FORM_SINGLE(), // These two should be eligible for removal
-                                   // if the links are otherwise present.
+    // if the links are otherwise present.
     WIKTIONARY_BASE_FORM_MULTI(false, false, WIKTIONARY_BASE_FORM_SINGLE),
     PART_OF_HYPHENATED(),
     BRACKETED(),
@@ -75,7 +75,7 @@ public enum EntryTypeName {
     }
 
     EntryTypeName(final boolean mainWord, final boolean overridesStopList,
-                  final EntryTypeName singleWordInstance) {
+    final EntryTypeName singleWordInstance) {
         this.mainWord = mainWord;
         this.overridesStopList = overridesStopList;
         this.singleWordInstance = singleWordInstance == null ? this : singleWordInstance;