@@ -139,7 +139,7 @@ public static Object arrayCopyObject(Object array, int newLength) {
139139 /**
140140 * @j2sNative
141141 *
142- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
142+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
143143 */
144144 {}
145145 Object t = newInstanceO (array , newLength );
@@ -181,7 +181,7 @@ public static String[] arrayCopyS(String[] array, int newLength) {
181181 /**
182182 * @j2sNative
183183 *
184- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
184+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
185185 */
186186 {}
187187 String [] t = new String [newLength ];
@@ -220,7 +220,7 @@ public static float[] arrayCopyF(float[] array, int newLength) {
220220 /**
221221 * @j2sNative
222222 *
223- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
223+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
224224 */
225225 {}
226226 float [] t = new float [newLength ];
@@ -237,7 +237,7 @@ public static int[] arrayCopyI(int[] array, int newLength) {
237237 /**
238238 * @j2sNative
239239 *
240- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
240+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
241241 */
242242 {}
243243 int [] t = new int [newLength ];
@@ -265,7 +265,7 @@ public static int[] arrayCopyRangeI(int[] array, int i0, int n) {
265265 /**
266266 * @j2sNative
267267 *
268- * if (Clazz.newArray$ ) return Clazz.newArray$ (-1, array, i0, n);
268+ * if (Clazz.array ) return Clazz.array (-1, array, i0, n);
269269 *
270270 */
271271 {
@@ -282,7 +282,7 @@ public static int[] arrayCopyRangeRevI(int[] array, int i0, int n) {
282282 /**
283283 * @j2sNative
284284 *
285- * if (Clazz.newArray$ ) return Clazz.newArray$ (-1, array, i0, n).reverse();
285+ * if (Clazz.array ) return Clazz.array (-1, array, i0, n).reverse();
286286 */
287287 {
288288 }
@@ -300,7 +300,7 @@ public static short[] arrayCopyShort(short[] array, int newLength) {
300300 /**
301301 * @j2sNative
302302 *
303- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
303+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
304304 */
305305 {}
306306 short [] t = new short [newLength ];
@@ -317,7 +317,7 @@ public static byte[] arrayCopyByte(byte[] array, int newLength) {
317317 /**
318318 * @j2sNative
319319 *
320- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
320+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
321321 */
322322 {}
323323 byte [] t = new byte [newLength ];
@@ -334,7 +334,7 @@ public static boolean[] arrayCopyBool(boolean[] array, int newLength) {
334334 /**
335335 * @j2sNative
336336 *
337- * if (Clazz.newArray$ && newLength < oldLength) return Clazz.newArray$ (-1, array, 0, newLength);
337+ * if (Clazz.array && newLength < oldLength) return Clazz.array (-1, array, 0, newLength);
338338 */
339339 {}
340340 boolean [] t = new boolean [newLength ];
0 commit comments