Skip to content

Commit 50237ae

Browse files
committed
This revision only includes some very minor coding cleanups.
The following files were modified: modified: src/edu/rice/cs/drjava/model/JDKToolsLibrary.java modified: src/edu/rice/cs/drjava/model/repl/newjvm/DrScalaInterpreter.java modified: src/edu/rice/cs/drjava/ui/AboutDialog.java
1 parent c1e6106 commit 50237ae

File tree

3 files changed

+211
-210
lines changed

3 files changed

+211
-210
lines changed

drjava/src/edu/rice/cs/drjava/model/JDKToolsLibrary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
public class JDKToolsLibrary {
7474

7575
/* Create debugging log. */
76-
public static final Log _log = new Log("GlobalModel.txt", false);
76+
public static final Log _log = new Log("GlobalModel.txt", true);
7777

7878
private final FullVersion _version;
7979
private final CompilerInterface _compiler;

drjava/src/edu/rice/cs/drjava/model/repl/newjvm/DrScalaInterpreter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public DrScalaInterpreter() {}
143143

144144
/** method for adding a classpath element to the REPL classpath. */
145145
public synchronized void addCP(String pathType, String path) {
146-
// System.out.print(pathType + ": " + path);
146+
_log.log("Added " + pathType + ": " + path);
147147
String res = this._interpret(":require " + path, true);
148148
if (res.contains("doesn't seem to exist"))
149149
System.err.println("ERROR: unable to add cp, '" + path + "' to the Interpreter classpath.");

0 commit comments

Comments
 (0)