ArrayUtil --> Arrays.
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@1172 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user