Skip to content

Commit

Permalink
Remove redundant final modifier
Browse files Browse the repository at this point in the history
Since EnginePlugin is an interface, a final modifier on a parameter in a
method declared there is redundant.
  • Loading branch information
jasontedor committed Oct 1, 2017
1 parent cdf80a8 commit 8f8b384
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ public interface EnginePlugin {
*
* @return an optional engine factory
*/
Optional<EngineFactory> getMaybeEngineFactory(final IndexSettings indexSettings);
Optional<EngineFactory> getMaybeEngineFactory(IndexSettings indexSettings);

}

0 comments on commit 8f8b384

Please sign in to comment.