comparison backend/src/main/java/org/dive4elements/river/importer/parsers/FlowVelocityModelParser.java @ 8856:5e38e2924c07 3.2.x

Fix code style.
author Tom Gottfried <tom@intevation.de>
date Thu, 18 Jan 2018 20:12:01 +0100
parents 3bb1c62ad732
children 2693bfaf503d 0a5239a1e46e
comparison
equal deleted inserted replaced
8855:d7c005e12af0 8856:5e38e2924c07
41 41
42 private static final Pattern META_MAINVALUE_A = 42 private static final Pattern META_MAINVALUE_A =
43 Pattern.compile("([a-zA-Z]+)+(\\d+)*[\\w()]*"); 43 Pattern.compile("([a-zA-Z]+)+(\\d+)*[\\w()]*");
44 44
45 private static final Pattern META_MAINVALUE_B = 45 private static final Pattern META_MAINVALUE_B =
46 Pattern.compile("(([a-zA-Z]+)+(\\d+)*)\\s*-\\s*(([a-zA-Z]+)+(\\d+)*\\S*)"); 46 Pattern.compile(
47 "(([a-zA-Z]+)+(\\d+)*)\\s*-\\s*(([a-zA-Z]+)+(\\d+)*\\S*)");
47 48
48 private static final Pattern META_MAINVALUE_C = 49 private static final Pattern META_MAINVALUE_C =
49 Pattern.compile("([0-9]++)\\s?(\\S*)|([0-9]++,[0-9]++)\\s?(\\S*)"); 50 Pattern.compile("([0-9]++)\\s?(\\S*)|([0-9]++,[0-9]++)\\s?(\\S*)");
50 51
51 private static final Pattern META_MAINVALUE_D = 52 private static final Pattern META_MAINVALUE_D =
52 Pattern.compile("(([0-9]*)\\s?(\\w*)|([0-9]++,[0-9]++)\\s?(\\w*))\\s*bis (([0-9]*)\\s?(\\S*)|([0-9]++,[0-9]++)\\s?(\\S*))"); 53 Pattern.compile(
54 "(([0-9]*)\\s?(\\w*)|([0-9]++,[0-9]++)\\s?(\\w*))\\s*"
55 + "bis (([0-9]*)\\s?(\\S*)|([0-9]++,[0-9]++)\\s?(\\S*))");
53 56
54 private static final Pattern META_MAINVALUE_E = 57 private static final Pattern META_MAINVALUE_E =
55 Pattern.compile("(([a-zA-Z]+)+(\\d+)*)\\s*bis (([a-zA-Z]+)+(\\d+)*\\S*)"); 58 Pattern.compile(
59 "(([a-zA-Z]+)+(\\d+)*)\\s*bis (([a-zA-Z]+)+(\\d+)*\\S*)");
56 60
57 private static final NumberFormat nf = 61 private static final NumberFormat nf =
58 NumberFormat.getInstance(DEFAULT_LOCALE); 62 NumberFormat.getInstance(DEFAULT_LOCALE);
59 63
60 64

http://dive4elements.wald.intevation.org