comparison flys-backend/src/main/java/de/intevation/flys/importer/WstParser.java @ 771:6dc847194625

Removed trailing whitespace. flys-backend/trunk@2241 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Sun, 26 Jun 2011 17:13:53 +0000
parents 677a6fceea6e
children
comparison
equal deleted inserted replaced
770:33a79496ba9e 771:6dc847194625
245 245
246 BigDecimal kaem = data[0]; 246 BigDecimal kaem = data[0];
247 247
248 if (!kms.add(kaem)) { 248 if (!kms.add(kaem)) {
249 log.warn( 249 log.warn(
250 "km " + kaem + 250 "km " + kaem +
251 " (line " + in.getLineNumber() + 251 " (line " + in.getLineNumber() +
252 ") found more than once. -> ignored"); 252 ") found more than once. -> ignored");
253 continue; 253 continue;
254 } 254 }
255 255
256 if (kaem.compareTo(minKm) < 0) { 256 if (kaem.compareTo(minKm) < 0) {
336 336
337 if (values == null || from == MAX_RANGE) { 337 if (values == null || from == MAX_RANGE) {
338 return; 338 return;
339 } 339 }
340 340
341 if (to.compareTo(from) < 0) { 341 if (to.compareTo(from) < 0) {
342 BigDecimal t = from; from = to; to = t; 342 BigDecimal t = from; from = to; to = t;
343 } 343 }
344 344
345 ImportRange range = new ImportRange(from, to); 345 ImportRange range = new ImportRange(from, to);
346 346
347 // little workaround to make the q ranges tightly fit. 347 // little workaround to make the q ranges tightly fit.

http://dive4elements.wald.intevation.org