Changes between Version 2 and Version 3 of Ticket #16995, comment 17


Ignore:
Timestamp:
2018-11-23T09:45:52+01:00 (7 years ago)
Author:
cmuelle8

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16995, comment 17

    v2 v3  
    195195
    196196* Should we use {{{String}}} objects exclusively the test assertions would need to change.  In this case the strings could be
    197 
    198197  * either compared directly, e.g. if the {{{DateUtils.getGpxFormat()}}} formatter was used to store the strings in {{{Waypoint.java}}}:
    199198{{{
     
    230229     /**
    231230}}}
    232 
    233231  * or by converting {{{String}}} to {{{Date}}} first, i.e. {{{gpxFormat.format(DateUtils.fromString(p1.get(GpxConstants.PT_TIME)))}}} with no changes {{{Waypoint.java}}} (i.e. PT_TIME attributes stored as {{{String}}}, but not having been normalized by the {{{DateUtils.getGpxFormat()}}} formatter):
    234232{{{