Skip to content

Commit 424fde0

Browse files
committed
Removed useless I18n reference in call to format
1 parent 97b0911 commit 424fde0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/cc/arduino/contributions/packages/ContributionsIndexer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ private void mergeContributions(File indexFile) throws IOException {
161161
} else {
162162
if (contributedPackage.isTrusted() || !isPackageNameProtected(contributedPackage)) {
163163
if (isPackageNameProtected(contributedPackage) && trustall) {
164-
System.err.println(I18n.format(tr("Warning: forced trusting untrusted contributions")));
164+
System.err.println(format(tr("Warning: forced trusting untrusted contributions")));
165165
}
166166
List<ContributedPlatform> platforms = contributedPackage.getPlatforms();
167167
if (platforms == null) {

0 commit comments

Comments
 (0)