ArrayUtil --> Arrays.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1172 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Bruno Garcia
2011-06-17 22:18:01 +00:00
parent 1aa6dc7ad4
commit 1c1032874a
16 changed files with 60 additions and 60 deletions
@@ -24,7 +24,7 @@ package com.threerings.media.tile {
import flash.geom.Point;
import flash.geom.Rectangle;
import com.threerings.util.ArrayUtil;
import com.threerings.util.Arrays;
import com.threerings.util.StringUtil;
/**
@@ -229,10 +229,10 @@ public class SwissArmyTileSet extends TileSet
{
super.populateClone(clone);
var saClone :SwissArmyTileSet = SwissArmyTileSet(clone);
saClone._tileCounts = _tileCounts == null ? null : ArrayUtil.copyOf(_tileCounts);
saClone._tileCounts = _tileCounts == null ? null : Arrays.copyOf(_tileCounts);
saClone._numTiles = _numTiles;
saClone._widths = _widths == null ? null : ArrayUtil.copyOf(_widths);
saClone._heights = _heights == null ? null : ArrayUtil.copyOf(_heights);
saClone._widths = _widths == null ? null : Arrays.copyOf(_widths);
saClone._heights = _heights == null ? null : Arrays.copyOf(_heights);
saClone._offsetPos = _offsetPos;
saClone._gapSize = _gapSize;
}