Skip to content

Commit 95455ba

Browse files
committed
This revision cleans up build.xml and some top-level code in the interpreter.
The following files were modified: modified: build.xml modified: ../dynamicjava/src/edu/rice/cs/dynamicjava/interpreter/Interpreter.java
1 parent eafa80a commit 95455ba

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

drjava/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,8 +553,8 @@
553553
</target>
554554

555555
<target name="do-run-jar" depends="resolve-jvm-args">
556-
<echo message="Running ${ant.project.name}.jar with command '${run-jvm}'" />
557-
<java jar="${ant.project.name}.jar" jvm="${run-jvm}" fork="yes" spawn="yes">
556+
<echo message="Running ${version-tag}.jar with command '${run-jvm}'" />
557+
<java jar="${version-tag}.jar" jvm="${run-jvm}" fork="yes" spawn="yes">
558558
<assertions>
559559
<enable />
560560
</assertions>

dynamicjava/src/edu/rice/cs/dynamicjava/interpreter/Interpreter.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@
1313

1414
import static edu.rice.cs.plt.debug.DebugUtil.debug;
1515

16-
/**
17-
* The external interface for the interpreter.
18-
*/
16+
/** The external interface for the interpreter. */
1917
public class Interpreter {
2018

2119
private final Options _opt;

0 commit comments

Comments
 (0)