More Java optimizations and code review for library and spawning systems.

This commit is contained in:
Cekis
2016-03-18 16:37:40 +00:00
parent cac0280db6
commit c46685be9c
67 changed files with 3963 additions and 7249 deletions
@@ -872,7 +872,7 @@ public class utils extends script.base_script
}
public static Vector addElement(Vector array, boolean element) throws InterruptedException
{
return addElement(array, new Boolean(element));
return addElement(array, Boolean.valueOf(element));
}
public static Vector addElement(Vector array, int element) throws InterruptedException
{