We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14c8e84 commit 1c37f32Copy full SHA for 1c37f32
1 file changed
src/main/java/com/mycmd/ShellContext.java
@@ -17,13 +17,14 @@ public class ShellContext {
17
18
public ShellContext() {
19
this.currentDir = new File(System.getProperty("user.dir"));
20
- this.environment = new HashMap<>()(System.getenv());
+ this.environment = new HashMap<>(System.getenv());
21
this.history = new ArrayList<>();
22
this.aliases = new HashMap<>();
23
this.scanner = null;
24
this.startTime = System.currentTimeMillis();
25
}
26
27
+
28
// ==================== Scanner Management ====================
29
30
/**
0 commit comments