< prev index next >

src/java.desktop/share/classes/java/awt/PrintJob.java

Print this page
*** 83,21 ***
      public abstract void end();
  
      /**
       * Ends this print job once it is no longer referenced.
       *
!      * @deprecated The {@code finalize} method has been deprecated.
!      *     Subclasses that override {@code finalize} in order to perform cleanup
!      *     should be modified to use alternative cleanup mechanisms and
!      *     to remove the overriding {@code finalize} method.
-      *     When overriding the {@code finalize} method, its implementation must explicitly
-      *     ensure that {@code super.finalize()} is invoked as described in {@link Object#finalize}.
-      *     See the specification for {@link Object#finalize()} for further
-      *     information about migration options.
       * @see #end
       */
!     @Deprecated(since="9")
      public void finalize() {
          end();
      }
  
  }
--- 83,18 ---
      public abstract void end();
  
      /**
       * Ends this print job once it is no longer referenced.
       *
!      * @deprecated Finalization has been deprecated for removal.  See
!      * {@link java.lang.Object#finalize} for background information and details
!      * about migration options.
!      *
       * @see #end
       */
!     @Deprecated(since="9", forRemoval=true)
+     @SuppressWarnings("removal")
      public void finalize() {
          end();
      }
  
  }
< prev index next >