Fix checkstyle violation in remove plugin tests

This commit fixes a redundant modifier checkstyle violation in
RemovePluginCommandTests.java.
This commit is contained in:
Jason Tedor 2017-07-28 14:52:11 +09:00
parent 1492ccd7ae
commit 9f12f3c338
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public class RemovePluginCommandTests extends ESTestCase {
final Environment env;
public MockRemovePluginCommand(final Environment env) {
private MockRemovePluginCommand(final Environment env) {
this.env = env;
}