Changeset 7321 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2014-07-21T01:51:53+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r7119 r7321 887 887 public static String getDurationString(long elapsedTime) throws IllegalArgumentException { 888 888 if (elapsedTime < 0) { 889 throw new IllegalArgumentException("elapsedTime must be > 0");889 throw new IllegalArgumentException("elapsedTime must be >= 0"); 890 890 } 891 891 // Is it less than 1 second ?
Note: See TracChangeset
for help on using the changeset viewer.