Skip to content

Commit 84fdb0c

Browse files
committed
Remove stray debug print
1 parent 42ff604 commit 84fdb0c

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

app/src/cc/arduino/UpdatableBoardsLibsFakeURLsHandler.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ public void openBoardLibManager(URL url) {
6666
return;
6767
}
6868

69-
System.out.println(url.getRef() + " " + url.getHost() + " " + url.getPath());
70-
7169
if (LIBRARYMANAGER.equals(url.getHost())) {
7270
base.openLibraryManager(url.getRef() == null ? "": url.getRef() , url.getPath() == null ? "" : url.getPath().replace("/", ""));
7371
return;

app/src/cc/arduino/contributions/ContributionsSelfCheck.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public void run() {
8787
} else if (updatableLibraries <= 0 && updatablePlatforms > 0) {
8888
text = I18n.format(tr("Updates available for some of your {0}boards{1}"), "<a href=\"http://boardsmanager/DropdownUpdatableCoresItem\">", "</a>");
8989
} else {
90-
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>");
90+
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>");
9191
}
9292

9393
if (cancelled) {

0 commit comments

Comments
 (0)