Changeset 6286 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/sort/WayConnectionTypeCalculator.java
r6265 r6286 16 16 public class WayConnectionTypeCalculator { 17 17 18 private final int UNCONNECTED = Integer.MIN_VALUE; 18 private static final int UNCONNECTED = Integer.MIN_VALUE; 19 19 20 20 private List<RelationMember> members; -
trunk/test/unit/org/openstreetmap/josm/data/projection/EllipsoidTest.java
r3531 r6286 11 11 public class EllipsoidTest { 12 12 13 final double EPSILON = 1e-8; 13 private static final double EPSILON = 1e-8; 14 14 15 15 /**
Note:
See TracChangeset
for help on using the changeset viewer.