Ignore:
Timestamp:
2014-09-07T16:33:52+02:00 (10 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java

    r7299 r7509  
    155155                            String rangeA2 = rangeA[1].trim();
    156156                            // if min timestap is empty: use lowest possible date
    157                             long minDate = DateUtils.fromString(rangeA1.isEmpty() ? "1980" : rangeA1).getTime(); 
     157                            long minDate = DateUtils.fromString(rangeA1.isEmpty() ? "1980" : rangeA1).getTime();
    158158                            // if max timestamp is empty: use "now"
    159                             long maxDate = rangeA2.isEmpty() ? System.currentTimeMillis() : DateUtils.fromString(rangeA2).getTime(); 
     159                            long maxDate = rangeA2.isEmpty() ? System.currentTimeMillis() : DateUtils.fromString(rangeA2).getTime();
    160160                            return new TimestampRange(minDate, maxDate);
    161161                        } else {
Note: See TracChangeset for help on using the changeset viewer.