Updated qldoc for ArrayUpdate

This commit is contained in:
Fosstars
2021-08-25 12:14:36 +02:00
parent c80a1da483
commit 86b7b2b86d

View File

@@ -28,12 +28,7 @@ private class StaticByteArrayCreation extends ArrayCreationExpr {
}
}
/**
* Defines a sub-set of expressions that update either content of an array or an array reference.
* This sub-set covers only methods that are likely to set a non-static IV.
* For example, `java.util.Arrays.fill()` is not covered because it assigns the same value
* to each element of the array.
*/
/** Defines a sub-set of expressions that update an array. */
private class ArrayUpdate extends Expr {
Expr array;