From 3e012e7f79b926d3058c0bcbc16f0c6baac67959 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sun, 4 Jan 2015 12:28:38 -0500 Subject: [PATCH] Fix ArrayList.Clear func name. --- plugins/include/adt_array.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/adt_array.inc b/plugins/include/adt_array.inc index c16934e0..3bd3378d 100644 --- a/plugins/include/adt_array.inc +++ b/plugins/include/adt_array.inc @@ -67,7 +67,7 @@ methodmap ArrayList < Handle { public native ArrayList(int blocksize=1, int startsize=0); // Clears an array of all entries. This is the same as Resize(0). - public native void ClearArray(); + public native void Clear(); // Clones an array, returning a new handle with the same size and data. // This should NOT be confused with CloneHandle. This is a completely new