- Timestamp:
- 2016-01-24T04:05:06+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/ConflictDialog.java
r9601 r9607 512 512 } 513 513 514 class ConflictPainter extends AbstractVisitor { 514 /** 515 * Paints conflicts. 516 */ 517 public static class ConflictPainter extends AbstractVisitor { 515 518 // Manage a stack of visited relations to avoid infinite recursion with cyclic relations (fix #7938) 516 519 private final Set<Relation> visited = new HashSet<>(); … … 529 532 } 530 533 531 p ublicvoid visit(Node n1, Node n2) {534 private void visit(Node n1, Node n2) { 532 535 Point p1 = nc.getPoint(n1); 533 536 Point p2 = nc.getPoint(n2);
Note:
See TracChangeset
for help on using the changeset viewer.