Skip to content

Commit

Permalink
minor: correct links detected by linkcheck plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
romani committed Aug 21, 2022
1 parent 7bfe2a6 commit e8d19e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .ci/jsoref-spellchecker/whitelist.words
Original file line number Diff line number Diff line change
Expand Up @@ -1212,6 +1212,7 @@ sickboy
Simplifiable
simplifybooleanexpression
simplifybooleanreturn
simplifystartswith
singleline
singlelined
singlelinejavadoc
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2146,6 +2146,7 @@
<excludedLink>https://travis-ci.com/</excludedLink>
<!-- permanent 403 -->
<excludedLink>https://docs.github.com/en/rest/checks</excludedLink>
<excludedLink>https://www.ietf.org/rfc/rfc4627.txt</excludedLink>
<!-- until https://github.com/checkstyle/checkstyle/issues/11754 -->
<excludedLink>https://checkstyle.sourceforge.io/version/6.18</excludedLink>
</excludedLinks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public static Configuration loadConfiguration(InputSource configSource,
* outside inner class for easier testing since inner class requires an instance.
*
* <p>Code copied from
* <a href="http://cvs.apache.org/viewcvs/jakarta-ant/src/main/org/apache/tools/ant/ProjectHelper.java">
* <a href="https://github.com/apache/ant/blob/master/src/main/org/apache/tools/ant/ProjectHelper.java">
* ant
* </a>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public static String relativizeAndNormalizePath(final String baseDirectory, fina
* It is faster version of {@link String#startsWith(String)} optimized for
* one-character prefixes at the expense of
* some readability. Suggested by
* <a href="http://pmd.sourceforge.net/pmd-5.3.1/pmd-java/rules/java/optimizations.html#SimplifyStartsWith">
* <a href="https://pmd.github.io/latest/pmd_rules_java_performance.html#simplifystartswith">
* SimplifyStartsWith</a> PMD rule:
* </p>
*
Expand All @@ -299,7 +299,7 @@ public static boolean startsWithChar(String value, char prefix) {
* It is faster version of {@link String#endsWith(String)} optimized for
* one-character suffixes at the expense of
* some readability. Suggested by
* <a href="http://pmd.sourceforge.net/pmd-5.3.1/pmd-java/rules/java/optimizations.html#SimplifyStartsWith">
* <a href="https://pmd.github.io/latest/pmd_rules_java_performance.html#simplifystartswith">
* SimplifyStartsWith</a> PMD rule:
* </p>
*
Expand Down

0 comments on commit e8d19e8

Please sign in to comment.