mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
Merge pull request #5686 from monkstone/patch-1
Update missing @Deprecated tags in PApplet.java
This commit is contained in:
@@ -8303,6 +8303,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) {
|
||||
@@ -8312,6 +8313,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);
|
||||
}
|
||||
@@ -8319,6 +8321,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