1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Adjusted javadoc comments.

This commit is contained in:
Sergey Prigogin 2009-10-06 05:45:55 +00:00
parent 8db497abb6
commit dbec91987b

View file

@ -99,7 +99,8 @@ public abstract class ArrayUtil {
/**
* Assumes that array contains nulls at the end, only.
* Appends element after the last non-null element.
* If the array is null or not large enough, a larger one is allocated.
* If the array is not large enough, a larger one is allocated.
* Null <code>array</code> is supported for backward compatibility only and only when T is Object.
*/
@SuppressWarnings("unchecked")
static public <T> T[] append(T[] array, T obj) {