Skip to content

Commit

Permalink
refactor: remove useless 'final' modifier in interface methods (#1334)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvojtechovsky authored and monperrus committed May 29, 2017
1 parent 9f0ff02 commit b9934c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/spoon/SpoonModelBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ interface InputType {
* @param filter
* The {@link CompilationUnitFilter} to add.
*/
void addCompilationUnitFilter(final CompilationUnitFilter filter);
void addCompilationUnitFilter(CompilationUnitFilter filter);

/**
* Removes {@code filter}. Does nothing, if {@code filter} has not been
Expand All @@ -316,7 +316,7 @@ interface InputType {
* @param filter
* The {@link CompilationUnitFilter} to remove.
*/
void removeCompilationUnitFilter(final CompilationUnitFilter filter);
void removeCompilationUnitFilter(CompilationUnitFilter filter);

/**
* Returns a copy of the internal list of {@link CompilationUnitFilter}s.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ public interface CompilationUnitFilter {
* @return {@code true} if and only if {@code path} should be excluded,
* {@code false} otherwise.
*/
boolean exclude(final String path);
boolean exclude(String path);
}

0 comments on commit b9934c3

Please sign in to comment.