@@ -141,7 +141,6 @@ public class PApplet implements PConstants {
141141 * Do not use; javaPlatform or javaVersionName are better options.
142142 * For instance, javaPlatform is useful when you need a number for
143143 * comparison, i.e. "if (javaPlatform >= 9)".
144- * @deprecated
145144 */
146145 @Deprecated
147146 public static final float javaVersion = 1 + javaPlatform / 10f;
@@ -8299,9 +8298,8 @@ static public void arrayCopy(Object src, Object dst) {
82998298 System.arraycopy(src, 0, dst, 0, Array.getLength(src));
83008299 }
83018300
8302- //
83038301 /**
8304- * @deprecated Use arrayCopy() instead.
8302+ * Use arrayCopy() instead.
83058303 */
83068304 @Deprecated
83078305 static public void arraycopy(Object src, int srcPosition,
@@ -8311,21 +8309,22 @@ static public void arraycopy(Object src, int srcPosition,
83118309 }
83128310
83138311 /**
8314- * @deprecated Use arrayCopy() instead.
8312+ * Use arrayCopy() instead.
83158313 */
83168314 @Deprecated
83178315 static public void arraycopy(Object src, Object dst, int length) {
83188316 System.arraycopy(src, 0, dst, 0, length);
83198317 }
83208318
83218319 /**
8322- * @deprecated Use arrayCopy() instead.
8320+ * Use arrayCopy() instead.
83238321 */
83248322 @Deprecated
83258323 static public void arraycopy(Object src, Object dst) {
83268324 System.arraycopy(src, 0, dst, 0, Array.getLength(src));
83278325 }
83288326
8327+
83298328 /**
83308329 * ( begin auto-generated from expand.xml )
83318330 *
@@ -12115,11 +12114,11 @@ public void rect(float a, float b, float c, float d,
1211512114 /**
1211612115 * ( begin auto-generated from square.xml )
1211712116 *
12118- * Draws a square to the screen. A square is a four-sided shape with
12119- * every angle at ninety degrees and each side is the same length.
12120- * By default, the first two parameters set the location of the
12121- * upper-left corner, the third sets the width and height. The way
12122- * these parameters are interpreted, however, may be changed with the
12117+ * Draws a square to the screen. A square is a four-sided shape with
12118+ * every angle at ninety degrees and each side is the same length.
12119+ * By default, the first two parameters set the location of the
12120+ * upper-left corner, the third sets the width and height. The way
12121+ * these parameters are interpreted, however, may be changed with the
1212312122 * <b>rectMode()</b> function.
1212412123 *
1212512124 * ( end auto-generated )
@@ -12228,9 +12227,9 @@ public void arc(float a, float b, float c, float d,
1222812227 /**
1222912228 * ( begin auto-generated from circle.xml )
1223012229 *
12231- * Draws a circle to the screen. By default, the first two parameters
12232- * set the location of the center, and the third sets the shape's width
12233- * and height. The origin may be changed with the <b>ellipseMode()</b>
12230+ * Draws a circle to the screen. By default, the first two parameters
12231+ * set the location of the center, and the third sets the shape's width
12232+ * and height. The origin may be changed with the <b>ellipseMode()</b>
1223412233 * function.
1223512234 *
1223612235 * ( end auto-generated )
0 commit comments