File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1163,7 +1163,7 @@ private JMenu buildHelpMenu() {
11631163 menu .add (item );
11641164
11651165 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/" ));
11671167 menu .add (item );
11681168
11691169 // macosx already has its own about menu
Original file line number Diff line number Diff line change 5151 */
5252public class UpdateCheck implements Runnable {
5353 Base base ;
54- String downloadURL = tr ( "https://www.arduino.cc/latest.txt" ) ;
54+ String downloadURL = "https://www.arduino.cc/latest.txt" ;
5555
5656 static final long ONE_DAY = 24 * 60 * 60 * 1000 ;
5757
@@ -116,7 +116,7 @@ public void run() {
116116 options ,
117117 options [0 ]);
118118 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" );
120120 }
121121 }
122122 }
You can’t perform that action at this time.
0 commit comments