Remove unused imports from EnvironmentAwareCommand

This commit removes two unused imports from EnvironmentAwareCommand that
were left behind after a previous change.
This commit is contained in:
Jason Tedor 2017-07-28 12:20:18 +09:00
parent 8639bf4a1a
commit c1ee65f990
1 changed files with 0 additions and 2 deletions

View File

@ -29,11 +29,9 @@ import org.elasticsearch.node.InternalSettingsPreparer;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
/** A cli command which requires an {@link org.elasticsearch.env.Environment} to use current paths and settings. */
public abstract class EnvironmentAwareCommand extends Command {