< prev index next >

modules/controls/src/main/java/javafx/scene/control/TextArea.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2016, 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

@@ -428,15 +428,11 @@
     /**
      * The default value for {@link #prefRowCount}.
      */
     public static final int DEFAULT_PREF_ROW_COUNT = 10;
 
-    /**
-     * @treatAsPrivate implementation detail
-     * @deprecated This is an internal API that is not intended for use and will be removed in the next version
-     */
-    public static final int DEFAULT_PARAGRAPH_CAPACITY = 32;
+    static final int DEFAULT_PARAGRAPH_CAPACITY = 32;
 
     /**
      * Creates a {@code TextArea} with empty text content.
      */
     public TextArea() {
< prev index next >