mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Adjusted comment.
This commit is contained in:
parent
d0d9ec8b09
commit
64a2e6817e
1 changed files with 1 additions and 2 deletions
|
@ -99,8 +99,7 @@ public abstract class ArrayUtil {
|
||||||
/**
|
/**
|
||||||
* Assumes that array contains nulls at the end, only.
|
* Assumes that array contains nulls at the end, only.
|
||||||
* Appends element after the last non-null element.
|
* Appends element after the last non-null element.
|
||||||
* If the array is null or not large enough, a larger one is allocated, using
|
* If the array is null or not large enough, a larger one is allocated.
|
||||||
* the given class object.
|
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
static public <T> T[] append(T[] array, T obj) {
|
static public <T> T[] append(T[] array, T obj) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue