Skip to content

Commit 4e51e47

Browse files
committed
removing the Eclipse JDI since we're using a JDK now
1 parent 0f447a0 commit 4e51e47

5 files changed

Lines changed: 3 additions & 7 deletions

File tree

java/.classpath

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,5 @@
2525
<classpathentry kind="lib" path="mode/org.eclipse.text.jar"/>
2626
<classpathentry kind="lib" path="mode/org.netbeans.swing.outline.jar"/>
2727
<classpathentry kind="lib" path="test/lib/junit-4.8.1.jar"/>
28-
<classpathentry kind="lib" path="mode/jdi.jar"/>
29-
<classpathentry kind="lib" path="mode/jdimodel.jar"/>
3028
<classpathentry kind="output" path="bin"/>
3129
</classpath>

java/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@
5454
<pathelement location="../app/lib/apple.jar" />
5555
<pathelement location="../app/lib/jna.jar" />
5656
<pathelement location="../app/lib/jna-platform.jar" />
57+
5758
<pathelement location="mode/antlr-4.7.2-complete.jar" />
5859
<pathelement location="mode/classpath-explorer-1.0.jar" />
5960
<pathelement location="mode/jsoup-1.7.1.jar" />
6061
<pathelement location="mode/org.netbeans.swing.outline.jar" />
61-
<pathelement location="mode/jdi.jar" />
62-
<pathelement location="mode/jdimodel.jar" />
6362
<pathelement location="mode/com.ibm.icu.jar" />
63+
6464
<pathelement location="mode/org.eclipse.core.contenttype.jar" />
6565
<pathelement location="mode/org.eclipse.core.jobs.jar" />
6666
<pathelement location="mode/org.eclipse.core.resources.jar" />

java/mode/jdi.jar

-72.9 KB
Binary file not shown.

java/mode/jdimodel.jar

-902 KB
Binary file not shown.

java/src/processing/mode/java/runner/Runner.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -662,10 +662,8 @@ public void run() {
662662

663663

664664
protected Connector findConnector(String connectorName) {
665-
// List connectors =
666-
// com.sun.jdi.Bootstrap.virtualMachineManager().allConnectors();
667665
List<Connector> connectors =
668-
org.eclipse.jdi.Bootstrap.virtualMachineManager().allConnectors();
666+
com.sun.jdi.Bootstrap.virtualMachineManager().allConnectors();
669667

670668
// // debug: code to list available connectors
671669
// Iterator iter2 = connectors.iterator();

0 commit comments

Comments
 (0)