File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
mode/src/processing/mode/android Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -161,10 +161,7 @@ public VirtualMachine connectVirtualMachine(int port) throws IOException {
161
161
}
162
162
163
163
private AttachingConnector getConnector () {
164
- // Eclipse gives an error in the following line (org.eclipse cannot be resolved), but just ignore it.
165
- // The mode runs and compiles fine.
166
- // VirtualMachineManager vmManager = org.eclipse.jdi.Bootstrap.virtualMachineManager();
167
- VirtualMachineManager vmManager = com .sun .jdi .Bootstrap .virtualMachineManager ();
164
+ VirtualMachineManager vmManager = org .eclipse .jdi .Bootstrap .virtualMachineManager ();
168
165
for (Connector connector : vmManager .attachingConnectors ()) {
169
166
if ("com.sun.jdi.SocketAttach" .equals (connector .name ())) {
170
167
return (AttachingConnector ) connector ;
You can’t perform that action at this time.
0 commit comments