Skip to content

Commit

Permalink
Remove "public" and "abstract" for several interfaces (redundant)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vest committed Dec 27, 2024
1 parent e049370 commit e29ad64
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions code/src/java/pcgen/persistence/lst/LstToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@

public interface LstToken
{

/**
/**
* Get Token Name
* @return token name
*/
public abstract String getTokenName();
String getTokenName();
}
4 changes: 2 additions & 2 deletions code/src/java/pcgen/rules/persistence/token/CDOMToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

public interface CDOMToken<T> extends LstToken
{
public ParseResult parseToken(LoadContext context, T obj, String value);
ParseResult parseToken(LoadContext context, T obj, String value);

public Class<T> getTokenClass();
Class<T> getTokenClass();
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@

public interface CDOMWriteToken<T> extends LstToken
{
public String[] unparse(LoadContext context, T obj);
String[] unparse(LoadContext context, T obj);
}

0 comments on commit e29ad64

Please sign in to comment.