< prev index next >

modules/javafx.graphics/src/main/java/javafx/stage/Stage.java

Print this page
rev 10897 : 8199357: Remove references to applets and Java Web Start from FX
Reviewed-by:

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2010, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -311,20 +311,18 @@
     final boolean isSecurityDialog() {
         return securityDialog;
     }
 
     /*
-     * sets this stage to be the primary stage.
-     * When run as an applet, this stage will appear in the broswer
+     * Sets this stage to be the primary stage.
      */
     void setPrimary(boolean primary) {
         this.primary = primary;
     }
 
     /*
      * Returns whether this stage is the primary stage.
-     * When run as an applet, the primary stage will appear in the broswer
      *
      * @return true if this stage is the primary stage for the application.
      */
     boolean isPrimary() {
         return primary;
< prev index next >