More import cleanups to go with r662, along with a little bit of foreaching, widening, etc.
git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@664 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
@@ -21,6 +21,8 @@
|
||||
|
||||
package com.threerings.miso.client;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics;
|
||||
@@ -29,9 +31,6 @@ import java.awt.Polygon;
|
||||
import java.awt.Rectangle;
|
||||
import java.awt.geom.AffineTransform;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
|
||||
import javax.swing.JPanel;
|
||||
|
||||
import com.samskivert.util.IntTuple;
|
||||
@@ -119,8 +118,8 @@ public class ResolutionView extends JPanel
|
||||
gfx.scale(0.25, 0.25);
|
||||
|
||||
// draw our block glyphs
|
||||
for (Iterator<BlockGlyph> iter = _blocks.values().iterator(); iter.hasNext(); ) {
|
||||
iter.next().paint(gfx);
|
||||
for (BlockGlyph blockGlyph : _blocks.values()) {
|
||||
blockGlyph.paint(gfx);
|
||||
}
|
||||
|
||||
// draw the view bounds
|
||||
|
||||
Reference in New Issue
Block a user