mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
Remove stray debug print
This commit is contained in:
parent
42ff604f1e
commit
84fdb0c0c3
@ -66,8 +66,6 @@ public class UpdatableBoardsLibsFakeURLsHandler implements HyperlinkListener {
|
||||
return;
|
||||
}
|
||||
|
||||
System.out.println(url.getRef() + " " + url.getHost() + " " + url.getPath());
|
||||
|
||||
if (LIBRARYMANAGER.equals(url.getHost())) {
|
||||
base.openLibraryManager(url.getRef() == null ? "": url.getRef() , url.getPath() == null ? "" : url.getPath().replace("/", ""));
|
||||
return;
|
||||
|
@ -87,7 +87,7 @@ public class ContributionsSelfCheck extends TimerTask {
|
||||
} else if (updatableLibraries <= 0 && updatablePlatforms > 0) {
|
||||
text = I18n.format(tr("Updates available for some of your {0}boards{1}"), "<a href=\"http://boardsmanager/DropdownUpdatableCoresItem\">", "</a>");
|
||||
} else {
|
||||
text = I18n.format(tr("Updates available for some of your {0}boards{1} and {2}libraries{3}"), "<a href=\"http://boardsmanager\">", "</a>", "<a href=\"http://librarymanager\">", "</a>");
|
||||
text = I18n.format(tr("Updates available for some of your {0}boards{1} and {2}libraries{3}"), "<a href=\"http://boardsmanager/DropdownUpdatableCoresItem\">", "</a>", "<a href=\"http://librarymanager/DropdownUpdatableLibrariesItem\">", "</a>");
|
||||
}
|
||||
|
||||
if (cancelled) {
|
||||
|
Loading…
Reference in New Issue
Block a user