Skip to content

Commit fbe7a3e

Browse files
committed
Fix typo
1 parent 0de590e commit fbe7a3e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/de/thetaphi/forbiddenapis/ant/AntTask.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public void info(String msg) {
145145
if (targetVersion == null && name.startsWith("jdk-")) {
146146
log.warn("The 'targetVersion' parameter is missing. " +
147147
"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.");
149149
}
150150
checker.addBundledSignatures(name, targetVersion);
151151
}

src/main/java/de/thetaphi/forbiddenapis/gradle/CheckForbiddenApis.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ public void info(String msg) {
563563
if (bundledSigsJavaVersion == null) {
564564
log.warn("The 'targetCompatibility' project or task property is missing. " +
565565
"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.");
567567
}
568568
for (String bs : bundledSignatures) {
569569
checker.addBundledSignatures(bs, bundledSigsJavaVersion);

src/main/java/de/thetaphi/forbiddenapis/maven/AbstractCheckMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ public void info(String msg) {
372372
if (targetVersion == null) {
373373
log.warn("The 'targetVersion' parameter or '${maven.compiler.target}' property is missing. " +
374374
"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.");
376376
}
377377
for (String bs : new LinkedHashSet<String>(Arrays.asList(bundledSignatures))) {
378378
checker.addBundledSignatures(bs, targetVersion);

0 commit comments

Comments
 (0)