util.stanza: Optimisation, remove useless if...then in stanza:children() iterator
[prosody.git] / util / array.lua
index bbf26f3214ae4992beda62004503641df6ca04d4..98c0ebe8a4586669bdeae53f3d99b008047dd81a 100644 (file)
@@ -1,6 +1,6 @@
 -- Prosody IM
--- Copyright (C) 2008-2009 Matthew Wild
--- Copyright (C) 2008-2009 Waqas Hussain
+-- Copyright (C) 2008-2010 Matthew Wild
+-- Copyright (C) 2008-2010 Waqas Hussain
 -- 
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
@@ -43,7 +43,7 @@ function array_base.filter(outa, ina, func)
                end
        end
        
-       if inplace and write < start_length then
+       if inplace and write <= start_length then
                for i=write,start_length do
                        outa[i] = nil;
                end
@@ -111,7 +111,6 @@ end
 
 -- Setup methods from array_base
 for method, f in pairs(array_base) do
-       local method = method; -- Yes, this is necessary :)
        local base_method = f;
        -- Setup global array method which makes new array
        array[method] = function (old_a, ...)