No effective change - code cleanup - remove unnecessary boxing

This commit is contained in:
Robin Bygrave
2015-07-31 20:08:30 +12:00
parent ba3b1fea6f
commit 9fe47194ff
34 changed files with 55 additions and 78 deletions
@@ -44,9 +44,7 @@ public class CachedBeanData {
*/
public boolean[] copyLoaded() {
boolean[] dest = new boolean[data.length];
for (int i = 0; i < dest.length; i++) {
dest[i] = loaded[i];
}
System.arraycopy(loaded, 0, dest, 0, dest.length);
return dest;
}