apply code formatter

This commit is contained in:
Shinsuke Sugaya 2016-05-12 08:14:37 +09:00
parent b1871b67d6
commit 86b23931bb
4 changed files with 8 additions and 9 deletions

View file

@ -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);
});
}

View file

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

View file

@ -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");

View file

@ -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);
}