From db646673d6a5af63ad6959ae6959f73eed7027fb Mon Sep 17 00:00:00 2001 From: akirschbaum Date: Sat, 12 Jun 2010 15:14:24 +0000 Subject: [PATCH] Remove debugging output from WorldMaker plugin script. git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@13387 282e977c-c81d-0410-88c4-b93c2d0d6712 --- editor/scripts/WorldMaker | 3 --- 1 file changed, 3 deletions(-) diff --git a/editor/scripts/WorldMaker b/editor/scripts/WorldMaker index 4341789c5..053233798 100644 --- a/editor/scripts/WorldMaker +++ b/editor/scripts/WorldMaker @@ -88,9 +88,7 @@ void checkDaList() { HashSet mapList = new HashSet(); boolean firstRun = false; - print("..."); long headerSize = ("P6\n"+DestWidth+" "+DestHeight+"\n255\n").getBytes().length; - print("..."); if (new File(Location + PictureDirectory + WorldPicture + ".ppm").exists()) { runCommand("cp " + Location + PictureDirectory + WorldPicture + ".ppm /tmp/tmp.ppm"); } else { @@ -104,7 +102,6 @@ void checkDaList() { fos.close(); firstRun = true; } - print("gogogo"); long toSkip = ("P6\n"+TileWidth+" "+TileHeight+"\n255\n").getBytes().length; RandomAccessFile raf = new RandomAccessFile(new File("/tmp/tmp.ppm"),"rw"); FileChannel fc = raf.getChannel();