< prev index next >

jdk/src/java.management/share/classes/java/lang/management/ThreadInfo.java

Print this page

        

@@ -588,11 +588,11 @@
      * a {@linkplain Thread#isDaemon daemon thread}.
      *
      * @return {@code true} if the thread is a daemon thread,
      *         {@code false} otherwise.
      * @see Thread#isDaemon
-     * @since 1.9
+     * @since 9
      */
     public boolean isDaemon() {
          return daemon;
     }
 

@@ -600,11 +600,11 @@
      * Returns the {@linkplain Thread#getPriority() thread priority} of the
      * thread associated with this {@code ThreadInfo}.
      *
      * @return The priority of the thread associated with this
      *         {@code ThreadInfo}.
-     * @since 1.9
+     * @since 9
      */
     public int getPriority() {
          return priority;
     }
 
< prev index next >