Prechádzať zdrojové kódy

apply code formatter

Shinsuke Sugaya 9 rokov pred
rodič
commit
86b23931bb

+ 2 - 2
src/main/java/org/codelibs/fess/app/service/SeunjeonService.java

@@ -59,7 +59,7 @@ public class SeunjeonService {
     }
 
     public void store(final String dictId, final SeunjeonItem seunjeonItem) {
-    	getSeunjeonFile(dictId).ifPresent(file -> {
+        getSeunjeonFile(dictId).ifPresent(file -> {
             if (seunjeonItem.getId() == 0) {
                 file.insert(seunjeonItem);
             } else {
@@ -69,7 +69,7 @@ public class SeunjeonService {
     }
 
     public void delete(final String dictId, final SeunjeonItem seunjeonItem) {
-    	getSeunjeonFile(dictId).ifPresent(file -> {
+        getSeunjeonFile(dictId).ifPresent(file -> {
             file.delete(seunjeonItem);
         });
     }

+ 0 - 1
src/main/java/org/codelibs/fess/dict/seunjeon/SeunjeonItem.java

@@ -146,5 +146,4 @@ public class SeunjeonItem extends DictionaryItem {
         }
     }
 
-
 }

+ 2 - 2
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

@@ -109,7 +109,7 @@ public interface FessHtmlPath {
 
     /** The path of the HTML: /admin/dict/seunjeon/admin_dict_seunjeon.jsp */
     HtmlNext path_AdminDictSeunjeon_AdminDictSeunjeonJsp = new HtmlNext("/admin/dict/seunjeon/admin_dict_seunjeon.jsp");
-    
+
     /** The path of the HTML: /admin/dict/synonym/admin_dict_seunjeon_details.jsp */
     HtmlNext path_AdminDictSeunjeon_AdminDictSeunjeonDetailsJsp = new HtmlNext("/admin/dict/seunjeon/admin_dict_seunjeon_details.jsp");
 
@@ -121,7 +121,7 @@ public interface FessHtmlPath {
 
     /** The path of the HTML: /admin/dict/synonym/admin_dict_seunjeon_upload.jsp */
     HtmlNext path_AdminDictSeunjeon_AdminDictSeunjeonUploadJsp = new HtmlNext("/admin/dict/seunjeon/admin_dict_seunjeon_upload.jsp");
-    
+
     /** The path of the HTML: /admin/duplicatehost/admin_duplicatehost.jsp */
     HtmlNext path_AdminDuplicatehost_AdminDuplicatehostJsp = new HtmlNext("/admin/duplicatehost/admin_duplicatehost.jsp");
 

+ 4 - 4
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

@@ -597,7 +597,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
 
     /** The key of the configuration. e.g. seunjeon */
     String ONLINE_HELP_NAME_DICT_SEUNJEON = "online.help.name.dict.seunjeon";
-    
+
     /** The key of the configuration. e.g. dict */
     String ONLINE_HELP_NAME_DICT = "online.help.name.dict";
 
@@ -2768,7 +2768,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
      * @return The value of found property. (NotNull: if not found, exception but basically no way)
      */
     String getOnlineHelpNameDictSeunjeon();
-    
+
     /**
      * Get the value for the key 'online.help.name.dict'. <br>
      * The value is, e.g. dict <br>
@@ -4575,11 +4575,11 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
         public String getOnlineHelpNameDictSynonym() {
             return get(FessConfig.ONLINE_HELP_NAME_DICT_SYNONYM);
         }
-        
+
         public String getOnlineHelpNameDictSeunjeon() {
             return get(FessConfig.ONLINE_HELP_NAME_DICT_SEUNJEON);
         }
-        
+
         public String getOnlineHelpNameDict() {
             return get(FessConfig.ONLINE_HELP_NAME_DICT);
         }