We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ec9b4 commit c1288cfCopy full SHA for c1288cf
drjava/src/edu/rice/cs/drjava/model/DefaultGlobalModel.java
@@ -877,7 +877,7 @@ public void resetInteractionsClassPath() {
877
if (projectExtras != null) for (File cpE : projectExtras) { _interactionsModel.addProjectClassPath(cpE); }
878
879
Vector<File> cp = DrScala.getConfig().getSetting(EXTRA_CLASSPATH);
880
- System.err.println("Extra class path used in resetInteraction is: '" + cp + "'");
+// System.err.println("Extra class path used in resetInteraction is: '" + cp + "'"); // shows in console
881
if (cp != null) {
882
for (File f : cp) { _interactionsModel.addExtraClassPath(f); }
883
}
0 commit comments