Remove println

This commit is contained in:
Greg Schueler 2014-01-16 17:32:55 -08:00
parent cb4d67f8f4
commit ad49b635b7

View file

@ -87,7 +87,6 @@ public class OutputEntryParser implements XmlNodeParser<RundeckOutputEntry> {
} }
try { try {
Date parse = dateFormat.parse(s); Date parse = dateFormat.parse(s);
System.out.println(s + ": " + parse.getTime());
return parse; return parse;
} catch (ParseException e) { } catch (ParseException e) {
return null; return null;