Skip to content

Commit c9163cb

Browse files
committed
removed test code
1 parent 3aa6e9a commit c9163cb

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

mode/src/processing/mode/android/AndroidEditor.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -348,10 +348,7 @@ public JMenu buildHelpMenu() {
348348
item = new JMenuItem(AndroidMode.getTextString("menu.help.processing_for_android_site"));
349349
item.addActionListener(new ActionListener() {
350350
public void actionPerformed(ActionEvent e) {
351-
// Platform.openURL("https://android.processing.org/");
352-
String BLUETOOTH_DEBUG_URL = "https://android.processing.org/";
353-
AndroidUtil.showMessage(AndroidMode.getTextString("android_mode.dialog.watchface_debug_title"),
354-
AndroidMode.getTextString("android_mode.dialog.watchface_debug_body", BLUETOOTH_DEBUG_URL));
351+
Platform.openURL("https://android.processing.org/");
355352
}
356353
});
357354
menu.add(item);

mode/src/processing/mode/android/AndroidUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public void hyperlinkUpdate(HyperlinkEvent e) {
9191
Platform.openURL(e.getURL().toString());
9292
} else {
9393
String description = e.getDescription();
94-
System.err.println("Cannot open this URL " + description);
94+
System.err.println("Cannot open this URL: " + description);
9595
}
9696
}
9797
}

0 commit comments

Comments
 (0)