Minor tweaks.

This commit is contained in:
Michael Bayne
2016-04-20 07:30:25 -07:00
parent 5dc0cc0c12
commit 04309d3bdb
2 changed files with 4 additions and 5 deletions
@@ -13,5 +13,5 @@ import com.samskivert.util.Logger;
public class Log public class Log
{ {
/** We dispatch our log messages through this logger. */ /** We dispatch our log messages through this logger. */
public static Logger log = Logger.getLogger("com.threerings.getdown"); public static final Logger log = Logger.getLogger("com.threerings.getdown");
} }
@@ -4,7 +4,7 @@
// https://raw.github.com/threerings/getdown/master/LICENSE // https://raw.github.com/threerings/getdown/master/LICENSE
/* /*
* @(#)JarDiff.java 1.7 05/11/17 * @(#)JarDiff.java 1.7 05/11/17
* *
* Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
* *
@@ -168,9 +168,8 @@ public class JarDiff implements JarDiffCodes
if (_debug) { if (_debug) {
//DEBUG: print out moved map //DEBUG: print out moved map
System.out.println("MOVED MAP!!!"); System.out.println("MOVED MAP!!!");
for (String newName : moved.keySet()) { for (Map.Entry<String,String> entry : moved.entrySet()) {
String oldName = moved.get(newName); System.out.println(entry);
System.out.println("key is " + newName + " value is " + oldName);
} }
//DEBUG: print out IMOVE map //DEBUG: print out IMOVE map