]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/engine/EntryTypeName.java
Remove unused images and XML sections.
[Dictionary.git] / src / com / hughes / android / dictionary / engine / EntryTypeName.java
index d1136e494088d8e26bffbcbbaad54c2d5e0ec4d7..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(),
@@ -70,12 +70,12 @@ public enum EntryTypeName {
     final boolean overridesStopList;
     final EntryTypeName singleWordInstance;
 
-    private EntryTypeName() {
+    EntryTypeName() {
         this(false, false, null);
     }
 
-    private EntryTypeName(final boolean mainWord, final boolean overridesStopList,
-            final EntryTypeName singleWordInstance) {
+    EntryTypeName(final boolean mainWord, final boolean overridesStopList,
+    final EntryTypeName singleWordInstance) {
         this.mainWord = mainWord;
         this.overridesStopList = overridesStopList;
         this.singleWordInstance = singleWordInstance == null ? this : singleWordInstance;