Mercurial > dive4elements > river
changeset 4756:ce15529f7624
W80Parser: Remove unneeded code.
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Thu, 03 Jan 2013 14:41:21 +0100 |
parents | ba8c2147b4ff |
children | e965593eee57 |
files | flys-backend/src/main/java/de/intevation/flys/importer/parsers/W80Parser.java |
diffstat | 1 files changed, 0 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-backend/src/main/java/de/intevation/flys/importer/parsers/W80Parser.java Thu Jan 03 14:41:02 2013 +0100 +++ b/flys-backend/src/main/java/de/intevation/flys/importer/parsers/W80Parser.java Thu Jan 03 14:41:21 2013 +0100 @@ -29,24 +29,6 @@ /** Private logger. */ private static Logger logger = Logger.getLogger(W80Parser.class); - /** Regex to match lines of files in da66 format. */ - private static final Pattern LINE_PATTERN = - Pattern.compile("[\\p{Alnum} ]{20}" + // ID - "[0-9 ]{10} " + // GK-right - "[0-9 ]{10} " + // GK-left - "[0-9 ]{6} " + // date - "[0-9 ]{1} " + // kind of exactness of measurement - "[0-9 ]{7} " + // height - "[0-9 ]{6} " + // date of height - "[0-9 ]{1} " + // kind of exactness of height-measurement - "[0-9 ]{3} " + // kind (only for NIV-points) - "[\\p{Alnum} ]{6} " + // date of point decline - "[\\p{Alnum} ]{8} " + // note for point - "[0-9 ]{2} " // actuality - ); - - // TODO define headers regex, use regex or remove it. - /** The current line to which add points. */ private List<XY> currentLine;