Skip to content

Commit 5e7ea56

Browse files
authored
Update PApplet.java
@deprecated missing
1 parent db5cff7 commit 5e7ea56

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

core/src/processing/core/PApplet.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8263,6 +8263,7 @@ static public void arrayCopy(Object src, Object dst) {
82638263
/**
82648264
* @deprecated Use arrayCopy() instead.
82658265
*/
8266+
@Deprecated
82668267
static public void arraycopy(Object src, int srcPosition,
82678268
Object dst, int dstPosition,
82688269
int length) {
@@ -8272,13 +8273,15 @@ static public void arraycopy(Object src, int srcPosition,
82728273
/**
82738274
* @deprecated Use arrayCopy() instead.
82748275
*/
8276+
@Deprecated
82758277
static public void arraycopy(Object src, Object dst, int length) {
82768278
System.arraycopy(src, 0, dst, 0, length);
82778279
}
82788280

82798281
/**
82808282
* @deprecated Use arrayCopy() instead.
82818283
*/
8284+
@Deprecated
82828285
static public void arraycopy(Object src, Object dst) {
82838286
System.arraycopy(src, 0, dst, 0, Array.getLength(src));
82848287
}

0 commit comments

Comments
 (0)