mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 13:21:53 +01:00
Link to Java 21 documentation (#4510)
Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
This commit is contained in:
parent
e078a5cd98
commit
12f2314a2d
@ -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.
|
||||
* The default {@link ThreadPoolExecutor} does the following (see
|
||||
* <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>:
|
||||
* <ul>
|
||||
* <li>If fewer than corePoolSize threads are running, the Executor always prefers adding a new thread rather than
|
||||
|
@ -31,7 +31,7 @@ public class TopicEventFilter implements EventFilter {
|
||||
* Constructs a new topic event filter.
|
||||
*
|
||||
* @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>
|
||||
*/
|
||||
public TopicEventFilter(String topicRegex) {
|
||||
|
@ -23,7 +23,7 @@ import org.eclipse.jdt.annotation.NonNullByDefault;
|
||||
* of events based on an event topic.
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
@ -37,7 +37,7 @@ public class TopicGlobEventFilter implements EventFilter {
|
||||
*
|
||||
* @param topicGlob the glob
|
||||
* @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>
|
||||
*/
|
||||
public TopicGlobEventFilter(String topicGlob) {
|
||||
|
Loading…
Reference in New Issue
Block a user