diff -r 0befec5034c2 -r 02c8eaa425e8 java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java --- a/java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java Thu Dec 26 21:18:54 2013 +0100 +++ b/java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java Thu Dec 26 21:47:33 2013 +0100 @@ -98,9 +98,7 @@ if (!options.getShowInfo().isEmpty()) { PrintStream infoOut = mode == MODE.JUST_SHOW_INFO ? System.out : System.err; InfoLister infoLister = new InfoLister(infoOut, this, options); - for (InfoLister.InfoType infoType : options.getShowInfo()) { - infoType.showInfo(infoLister); - } + infoLister.showInfo(); } switch (mode) {