Link to Java 21 documentation (#4510)

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
Jacob Laursen 2024-12-21 14:01:51 +01:00 committed by GitHub
parent e078a5cd98
commit 12f2314a2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ import org.slf4j.LoggerFactory;
* This is a thread pool executor service, which works as a developer would expect it to work. * This is a thread pool executor service, which works as a developer would expect it to work.
* The default {@link ThreadPoolExecutor} does the following (see * The default {@link ThreadPoolExecutor} does the following (see
* <a href= * <a href=
* "https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/concurrent/ThreadPoolExecutor.html">the * "https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/concurrent/ThreadPoolExecutor.html">the
* official JavaDoc)</a>: * official JavaDoc)</a>:
* <ul> * <ul>
* <li>If fewer than corePoolSize threads are running, the Executor always prefers adding a new thread rather than * <li>If fewer than corePoolSize threads are running, the Executor always prefers adding a new thread rather than

View File

@ -31,7 +31,7 @@ public class TopicEventFilter implements EventFilter {
* Constructs a new topic event filter. * Constructs a new topic event filter.
* *
* @param topicRegex the regular expression of a topic * @param topicRegex the regular expression of a topic
* @see <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/regex/Pattern.html">Java * @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/util/regex/Pattern.html">Java
* Regex</a> * Regex</a>
*/ */
public TopicEventFilter(String topicRegex) { public TopicEventFilter(String topicRegex) {

View File

@ -23,7 +23,7 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
* of events based on an event topic. * of events based on an event topic.
* *
* The syntax for the filter is the glob syntax documented at * The syntax for the filter is the glob syntax documented at
* https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/nio/file/FileSystem.html#getPathMatcher(java.lang.String) * https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/nio/file/FileSystem.html#getPathMatcher(java.lang.String)
* *
* @author Cody Cutrer - Initial contribution * @author Cody Cutrer - Initial contribution
*/ */
@ -37,7 +37,7 @@ public class TopicGlobEventFilter implements EventFilter {
* *
* @param topicGlob the glob * @param topicGlob the glob
* @see <a href= * @see <a href=
* "https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/nio/file/FileSystem.html#getPathMatcher(java.lang.String)">Java * "https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/nio/file/FileSystem.html#getPathMatcher(java.lang.String)">Java
* Glob</a> * Glob</a>
*/ */
public TopicGlobEventFilter(String topicGlob) { public TopicGlobEventFilter(String topicGlob) {