mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 22:29:18 +01:00
Update PApplet.java
@Deprecated missing
This commit is contained in:
@@ -8263,6 +8263,7 @@ public class PApplet implements PConstants {
|
||||
/**
|
||||
* @deprecated Use arrayCopy() instead.
|
||||
*/
|
||||
@Deprecated
|
||||
static public void arraycopy(Object src, int srcPosition,
|
||||
Object dst, int dstPosition,
|
||||
int length) {
|
||||
@@ -8272,6 +8273,7 @@ public class PApplet implements PConstants {
|
||||
/**
|
||||
* @deprecated Use arrayCopy() instead.
|
||||
*/
|
||||
@Deprecated
|
||||
static public void arraycopy(Object src, Object dst, int length) {
|
||||
System.arraycopy(src, 0, dst, 0, length);
|
||||
}
|
||||
@@ -8279,6 +8281,7 @@ public class PApplet implements PConstants {
|
||||
/**
|
||||
* @deprecated Use arrayCopy() instead.
|
||||
*/
|
||||
@Deprecated
|
||||
static public void arraycopy(Object src, Object dst) {
|
||||
System.arraycopy(src, 0, dst, 0, Array.getLength(src));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user