mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Boards/Lib managers: use system proxy settings (got rid of our proxy settings
in File > Preferences)
This commit is contained in:
@ -742,8 +742,10 @@ public class BaseNoGui {
|
||||
}
|
||||
|
||||
static public void main(String args[]) throws Exception {
|
||||
if (args.length == 0)
|
||||
if (args.length == 0) {
|
||||
showError(_("No parameters"), _("No command line parameters found"), null);
|
||||
}
|
||||
System.setProperty("java.net.useSystemProxies", "true");
|
||||
|
||||
Runtime.getRuntime().addShutdownHook(new Thread(DeleteFilesOnShutdown.INSTANCE));
|
||||
|
||||
|
Reference in New Issue
Block a user