Changeset 14026 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/BBox.java
r13910 r14026 99 99 */ 100 100 public BBox(IWay<?> w) { 101 w.getNodes().forEach(this::add); 101 for (INode ll : w.getNodes()) { 102 add(ll); 103 } 102 104 } 103 105 -
trunk/test/unit/org/openstreetmap/josm/tools/KeyboardUtilsTest.java
r14017 r14026 53 53 */ 54 54 @Test 55 public void test getCharactersForKeyE00() {55 public void testGetCharactersForKeyE00() { 56 56 char deadCircumflex = (char) KeyEvent.VK_DEAD_CIRCUMFLEX; 57 57 char deadGrave = (char) KeyEvent.VK_DEAD_GRAVE;
Note:
See TracChangeset
for help on using the changeset viewer.