Changeset 8997 in josm
- Timestamp:
- 2015-11-07T22:34:27+01:00 (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r8994 r8997 1503 1503 */ 1504 1504 private static class DirectionString { 1505 public int direction;1506 public String str;1507 1508 publicDirectionString(int direction, String str) {1505 public final int direction; 1506 public final String str; 1507 1508 DirectionString(int direction, String str) { 1509 1509 this.direction = direction; 1510 1510 this.str = str; -
trunk/test/unit/org/openstreetmap/josm/data/osm/WaySegmentTest.java
r8990 r8997 43 43 throw new IllegalStateException("Expecting IllegalArgumentException"); 44 44 } catch (IllegalArgumentException expected) { 45 // expected45 System.out.println("Expected exception: " + expected.getMessage()); 46 46 } 47 47 }
Note:
See TracChangeset
for help on using the changeset viewer.