From: <chr...@us...> - 2006-08-27 16:58:53
|
Revision: 291 Author: christianhujer Date: 2006-08-27 09:58:48 -0700 (Sun, 27 Aug 2006) ViewCVS: http://svn.sourceforge.net/gridarta/?rev=291&view=rev Log Message: ----------- Cosmetic: Declared a var final. Modified Paths: -------------- trunk/daimonin/src/daieditor/CMapFileEncode.java Modified: trunk/daimonin/src/daieditor/CMapFileEncode.java =================================================================== --- trunk/daimonin/src/daieditor/CMapFileEncode.java 2006-08-27 16:48:27 UTC (rev 290) +++ trunk/daimonin/src/daieditor/CMapFileEncode.java 2006-08-27 16:58:48 UTC (rev 291) @@ -76,7 +76,7 @@ final Point pos = new Point(); for (pos.x = 0; pos.x < mapSize.getWidth(); pos.x++) { for (pos.y = 0; pos.y < mapSize.getHeight(); pos.y++) { - for (ArchObject node : mapModel.getMapSquare(pos)) { + for (final ArchObject node : mapModel.getMapSquare(pos)) { // only non muli suckers if (node.getMapMultiHead() == null && node.getMultiRefCount() == 0) { writeMapArch(node, false); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |