changeset 1112:91dc1f0aceba

Removed debug output
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 27 Oct 2016 15:49:53 +0200
parents aaec080456de
children 628e0da7435a 430bbc8166d6
files src/main/java/de/intevation/lada/importer/laf/LafObjectListener.java
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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();
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)