Skip to content

Commit c1288cf

Browse files
committed
This revision eliminates the printing of a debugging message in the
console pane. The following file was modified: modified: src/edu/rice/cs/drjava/model/DefaultGlobalModel.java
1 parent f8ec9b4 commit c1288cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ public void resetInteractionsClassPath() {
877877
if (projectExtras != null) for (File cpE : projectExtras) { _interactionsModel.addProjectClassPath(cpE); }
878878

879879
Vector<File> cp = DrScala.getConfig().getSetting(EXTRA_CLASSPATH);
880-
System.err.println("Extra class path used in resetInteraction is: '" + cp + "'");
880+
// System.err.println("Extra class path used in resetInteraction is: '" + cp + "'"); // shows in console
881881
if (cp != null) {
882882
for (File f : cp) { _interactionsModel.addExtraClassPath(f); }
883883
}

0 commit comments

Comments
 (0)