Whitespace changes.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@14700 282e977c-c81d-0410-88c4-b93c2d0d6712
master
akirschbaum 2011-06-25 18:55:53 +00:00
parent 0955cfad77
commit 9dcffd7445
1 changed files with 11 additions and 18 deletions

View File

@ -11,9 +11,6 @@ import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel; import java.nio.channels.FileChannel;
/*
* Functions declaration
*/
File getSimpleFilename(File mapFile) { File getSimpleFilename(File mapFile) {
String mapFilename = mapFile.getPath(); String mapFilename = mapFile.getPath();
int i = mapFilename.lastIndexOf(File.separator); int i = mapFilename.lastIndexOf(File.separator);
@ -65,9 +62,6 @@ boolean runCommand(String cmd) {
return p.exitValue() == 0; return p.exitValue() == 0;
} }
/*
* Running code
*/
void checkDaList() { void checkDaList() {
DestWidth = TileWidth.intValue() * NumX.intValue(); DestWidth = TileWidth.intValue() * NumX.intValue();
DestHeight = TileHeight.intValue() * NumY.intValue(); DestHeight = TileHeight.intValue() * NumY.intValue();
@ -133,7 +127,6 @@ void checkDaList() {
); );
mbb.put(buf, (int) (row * TileWidth.intValue() * 3), (int) (TileWidth.intValue() * 3)); mbb.put(buf, (int) (row * TileWidth.intValue() * 3), (int) (TileWidth.intValue() * 3));
} }
} }
} }
} }