File tree 3 files changed +3
-3
lines changed
src/main/java/de/thetaphi/forbiddenapis
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ public void info(String msg) {
145
145
if (targetVersion == null && name .startsWith ("jdk-" )) {
146
146
log .warn ("The 'targetVersion' parameter is missing. " +
147
147
"Trying to read bundled JDK signatures without compiler target. " +
148
- "You have to explicitely specify the version in the resource name." );
148
+ "You have to explicitly specify the version in the resource name." );
149
149
}
150
150
checker .addBundledSignatures (name , targetVersion );
151
151
}
Original file line number Diff line number Diff line change @@ -563,7 +563,7 @@ public void info(String msg) {
563
563
if (bundledSigsJavaVersion == null ) {
564
564
log .warn ("The 'targetCompatibility' project or task property is missing. " +
565
565
"Trying to read bundled JDK signatures without compiler target. " +
566
- "You have to explicitely specify the version in the resource name." );
566
+ "You have to explicitly specify the version in the resource name." );
567
567
}
568
568
for (String bs : bundledSignatures ) {
569
569
checker .addBundledSignatures (bs , bundledSigsJavaVersion );
Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ public void info(String msg) {
372
372
if (targetVersion == null ) {
373
373
log .warn ("The 'targetVersion' parameter or '${maven.compiler.target}' property is missing. " +
374
374
"Trying to read bundled JDK signatures without compiler target. " +
375
- "You have to explicitely specify the version in the resource name." );
375
+ "You have to explicitly specify the version in the resource name." );
376
376
}
377
377
for (String bs : new LinkedHashSet <String >(Arrays .asList (bundledSignatures ))) {
378
378
checker .addBundledSignatures (bs , targetVersion );
You can’t perform that action at this time.
0 commit comments