Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
coding style
Browse files Browse the repository at this point in the history
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
  • Loading branch information
miurahr committed Sep 28, 2021
1 parent 8271de3 commit 135e598
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/github/eb4j/ebview/dictionary/PDic.java
Expand Up @@ -18,7 +18,7 @@ public class PDic implements IDictionaryFactory {
* @return Whether or not the file is supported
*/
@Override
public boolean isSupportedFile(File file) {
public boolean isSupportedFile(final File file) {
return file.getPath().endsWith(".DIC") || file.getPath().endsWith(".dic");
}

Expand All @@ -29,7 +29,7 @@ public boolean isSupportedFile(File file) {
* @return An IDictionary file that can read articles from the file
*/
@Override
public Set<IDictionary> loadDict(File file) {
public Set<IDictionary> loadDict(final File file) {
Set<IDictionary> result = new HashSet<>();
try {
IDictionary dictionary = new PdicDictionary(file);
Expand Down

0 comments on commit 135e598

Please sign in to comment.