mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-27 16:56:48 -04:00
More Java optimizations and code review for library and spawning systems.
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user