comparison artifacts/src/main/java/org/dive4elements/river/artifacts/model/QRangeTree.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 682a26e4158b
children 0a5239a1e46e
comparison
equal deleted inserted replaced
8855:d7c005e12af0 8856:5e38e2924c07
380 sb.append(" [label=\""); 380 sb.append(" [label=\"");
381 sb.append(current.a).append(", ").append(current.b); 381 sb.append(current.a).append(", ").append(current.b);
382 sb.append(": ").append(current.q).append("\"]\n"); 382 sb.append(": ").append(current.q).append("\"]\n");
383 if (current.left != null) { 383 if (current.left != null) {
384 String leftName = name(current.left); 384 String leftName = name(current.left);
385 sb.append(name).append(" -- n").append(leftName).append("\n"); 385 sb.append(name).append(" -- n").append(leftName)
386 .append("\n");
386 stack.push(current.left); 387 stack.push(current.left);
387 } 388 }
388 if (current.right != null) { 389 if (current.right != null) {
389 String rightName = name(current.right); 390 String rightName = name(current.right);
390 sb.append(name).append(" -- n").append(rightName).append("\n"); 391 sb.append(name).append(" -- n").append(rightName)
392 .append("\n");
391 stack.push(current.right); 393 stack.push(current.right);
392 } 394 }
393 } 395 }
394 } 396 }
395 sb.append("}\n"); 397 sb.append("}\n");

http://dive4elements.wald.intevation.org