[Lada-commits] [PATCH] Removed debug output
Wald Commits
scm-commit at wald.intevation.org
Thu Oct 27 15:49:56 CEST 2016
# HG changeset patch
# User Raimund Renkert <raimund.renkert at intevation.de>
# Date 1477576193 -7200
# Node ID 91dc1f0aceba28fc6270c3cd811421d89c85901d
# Parent aaec080456de5aed429aa25538a59b4fdd86c341
Removed debug output
diff -r aaec080456de -r 91dc1f0aceba src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java
--- a/src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java Thu Oct 27 15:45:58 2016 +0200
+++ b/src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java Thu Oct 27 15:49:53 2016 +0200
@@ -64,7 +64,6 @@
* <p>The default implementation does nothing.</p>
*/
@Override public void enterProbendatei(LafParser.ProbendateiContext ctx) {
- System.out.println("start building raw data");
}
/**
@@ -73,8 +72,6 @@
* <p>The default implementation does nothing.</p>
*/
@Override public void exitProbendatei(LafParser.ProbendateiContext ctx) {
- System.out.println("finished.");
- System.out.println("build " + data.count() + " proben.");
}
/**
@@ -97,7 +94,6 @@
identifier = identifier == null
? "not identified"
: identifier;
- System.out.println("exit: " + identifier);
errors.put(identifier, currentErrors);
}
currentErrors.clear();
@@ -130,9 +126,6 @@
@Override public void exitProbe(LafParser.ProbeContext ctx) {
data.addProbe(currentProbe);
if (!currentErrors.isEmpty()) {
- for (ReportItem item : currentErrors) {
- System.out.println("item: " + item.getKey());
- }
String identifier = currentProbe.getAttributes().get("PROBE_ID");
identifier = identifier == null
? currentProbe.getAttributes().get("PROBEN_NR")
@@ -141,7 +134,6 @@
? currentProbe.getAttributes().get("HAUPTPROBENNUMMER")
: identifier;
identifier = identifier == null ? "not identified" : identifier;
- System.out.println("exit probe: " + identifier);
errors.put(identifier, currentErrors);
}
currentErrors.clear();
More information about the Lada-commits
mailing list