Remove stray debug print

This commit is contained in:
Martino Facchin 2016-04-01 17:05:54 +02:00
parent 42ff604f1e
commit 84fdb0c0c3
2 changed files with 1 additions and 3 deletions

View File

@ -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;

View File

@ -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) {