File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1163,7 +1163,7 @@ private JMenu buildHelpMenu() {
1163
1163
menu .add (item );
1164
1164
1165
1165
item = new JMenuItem (tr ("Visit Arduino.cc" ));
1166
- item .addActionListener (event -> Base .openURL (tr ( "http ://www.arduino.cc/") ));
1166
+ item .addActionListener (event -> Base .openURL ("https ://www.arduino.cc/" ));
1167
1167
menu .add (item );
1168
1168
1169
1169
// macosx already has its own about menu
Original file line number Diff line number Diff line change 51
51
*/
52
52
public class UpdateCheck implements Runnable {
53
53
Base base ;
54
- String downloadURL = tr ( "https://www.arduino.cc/latest.txt" ) ;
54
+ String downloadURL = "https://www.arduino.cc/latest.txt" ;
55
55
56
56
static final long ONE_DAY = 24 * 60 * 60 * 1000 ;
57
57
@@ -116,7 +116,7 @@ public void run() {
116
116
options ,
117
117
options [0 ]);
118
118
if (result == JOptionPane .YES_OPTION ) {
119
- Base .openURL (tr ( "https://www.arduino.cc/en/Main/Software" ) );
119
+ Base .openURL ("https://www.arduino.cc/en/software" );
120
120
}
121
121
}
122
122
}
You can’t perform that action at this time.
0 commit comments