From 64a2e6817e3bfd82b81b14ecbc02bb3e635098e0 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sun, 4 Oct 2009 06:24:54 +0000 Subject: [PATCH] Adjusted comment. --- .../parser/org/eclipse/cdt/core/parser/util/ArrayUtil.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/util/ArrayUtil.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/util/ArrayUtil.java index 289f3aaa19a..997a2ab8f6e 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/util/ArrayUtil.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/util/ArrayUtil.java @@ -99,8 +99,7 @@ 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, using - * the given class object. + * If the array is null or not large enough, a larger one is allocated. */ @SuppressWarnings("unchecked") static public T[] append(T[] array, T obj) {