You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -345,18 +345,18 @@ public void addPackageList(Map<String, List<Library>> importToLibraryTable) {
345
345
} else {
346
346
if(!instructed) {
347
347
instructed = true;
348
-
AppMessages.err("The library found in");
349
-
AppMessages.err(getPath());
350
-
AppMessages.err("conflicts with");
348
+
Messages.err("The library found in");
349
+
Messages.err(getPath());
350
+
Messages.err("conflicts with");
351
351
for (Librarylibrary : libraries) {
352
-
AppMessages.err(library.getPath());
352
+
Messages.err(library.getPath());
353
353
}
354
-
AppMessages.err("which already define(s) the package " + pkg);
355
-
AppMessages.err("If you have a line in your sketch that reads");
356
-
AppMessages.err("import " + pkg + ".*;");
357
-
AppMessages.err("Then you'll need to first remove one of those libraries.");
354
+
Messages.err("which already define(s) the package " + pkg);
355
+
Messages.err("If you have a line in your sketch that reads");
356
+
Messages.err("import " + pkg + ".*;");
357
+
Messages.err("Then you'll need to first remove one of those libraries.");
358
358
}else{
359
-
AppMessages.err("\tPackage ("+pkg+")\t conflict found in [" + name + "] with libraries: " + libraries.stream().map(Library::getName).reduce((a, b) -> a + ", " + b).orElse(""));
359
+
Messages.err("\tPackage ("+pkg+")\t conflict found in [" + name + "] with libraries: " + libraries.stream().map(Library::getName).reduce((a, b) -> a + ", " + b).orElse(""));
360
360
}
361
361
}
362
362
libraries.add(this);
@@ -585,7 +585,7 @@ static public List<File> discover(File folder) {
585
585
"The library \"" + potentialName + "\" cannot be used.\n" +
586
586
"Library names must contain only basic letters and numbers.\n" +
587
587
"(ASCII only and no spaces, and it cannot start with a number)";
588
-
AppMessages.showMessage("Ignoring bad library name", mess);
588
+
Messages.showMessage("Ignoring bad library name", mess);
589
589
590
590
} else {
591
591
Stringpkg = findCollision(libraryFolder);
@@ -594,7 +594,7 @@ static public List<File> discover(File folder) {
594
594
"The library \"" + potentialName + "\" cannot be used\n" +
595
595
"because it contains the " + pkg + " libraries.\n" +
596
596
"Please contact the library author for an update.";
597
-
AppMessages.showMessage("Ignoring bad library", mess);
597
+
Messages.showMessage("Ignoring bad library", mess);
0 commit comments