org.jbake.util.DebugUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbake-core Show documentation
Show all versions of jbake-core Show documentation
JBake is a Java based open source static site/blog generator for developers.
package org.jbake.util;
import java.io.PrintStream;
import java.util.Map;
public class DebugUtil {
public static void printMap(Map map, PrintStream printStream) {
printStream.println();
for (Map.Entry entry: map.entrySet()) {
printStream.println(entry.getKey() + " :: " + entry.getValue());
}
printStream.println();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy