Changeset 15398 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/gpx/GpxData.java
r15397 r15398 710 710 * Returns minimum and maximum timestamps for all tracks 711 711 * Warning: there are lot of track with broken timestamps, 712 * so we just ingore points from future and from year before 1970 in this method 713 * works correctly @since 5815 712 * so we just ignore points from future and from year before 1970 in this method 714 713 * @return minimum and maximum dates in array of 2 elements 714 * @since 7319 715 715 */ 716 716 public synchronized Date[] getMinMaxTimeForAllTracks() { -
trunk/test/unit/org/openstreetmap/josm/gui/layer/GpxLayerTest.java
r15396 r15398 16 16 import javax.swing.JScrollPane; 17 17 18 import org.junit.Before Class;18 import org.junit.Before; 19 19 import org.junit.Rule; 20 20 import org.junit.Test; … … 48 48 * Setup test 49 49 */ 50 @Before Class51 public staticvoid beforeClass() {50 @Before 51 public void before() { 52 52 // Make sure we don't rely on a specific country, for distance units 53 53 Locale.setDefault(Locale.ENGLISH);
Note:
See TracChangeset
for help on using the changeset viewer.