Skip to content

Commit

Permalink
SystemRegistryImpl: change some fields visibilities to simplify class…
Browse files Browse the repository at this point in the history
… extensions
  • Loading branch information
mattirn committed Apr 1, 2021
1 parent 8e66a60 commit 4e18cc6
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -62,8 +62,9 @@ public enum Pipe {
private static final Class<?>[] BUILTIN_REGISTRIES = { Builtins.class, ConsoleEngineImpl.class };
private CommandRegistry[] commandRegistries;
private Integer consoleId;
private final Parser parser;
private final ConfigurationPath configPath;
protected final Parser parser;
protected final ConfigurationPath configPath;
protected final Supplier<Path> workDir;
private final Map<String,CommandRegistry> subcommands = new HashMap<>();
private final Map<Pipe, String> pipeName = new HashMap<>();
private final Map<String, CommandMethods> commandExecute = new HashMap<>();
Expand All @@ -72,7 +73,6 @@ public enum Pipe {
private final CommandOutputStream outputStream;
private ScriptStore scriptStore = new ScriptStore();
private NamesAndValues names = new NamesAndValues();
private final Supplier<Path> workDir;
private final SystemCompleter customSystemCompleter = new SystemCompleter();
private final AggregateCompleter customAggregateCompleter = new AggregateCompleter(new ArrayList<>());
private boolean commandGroups = true;
Expand Down

0 comments on commit 4e18cc6

Please sign in to comment.