Skip to content

Commit

Permalink
style: fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
miurahr committed May 16, 2024
1 parent 01cc3f1 commit 1a5e559
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ public class OpenOfficeSpellDictionary implements SpellDictionary
{
private File personalDict ;
private MySpell mySpell ;
private boolean isLoaded = false ;
private Future loader = null ;
private Future<Object> loader = null ;

//Emilio Gustavo Ormeño
public OpenOfficeSpellDictionary(InputStream affIS, InputStream dicIS) throws IOException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* @author DreamTangerine
*
*/
@SuppressWarnings("serial")
public class SpellDictionaryException extends Exception
{

Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/dts/spell/event/SpellCheckEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*
* @author DreamTangerine ([email protected])
*/
@SuppressWarnings("serial")
public class SpellCheckEvent extends EventObject
{
private WordFinder finder ;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.dts.spell.finder;

@SuppressWarnings("serial")
public class WordNotFoundException extends RuntimeException {

/**
Expand Down

0 comments on commit 1a5e559

Please sign in to comment.