Ticket #21763: 21763.patch

File 21763.patch, 1.4 KB (added by taylor.smock, 3 years ago)
  • build.xml

     
    33    <!-- enter the SVN commit message -->
    44    <property name="commit.message" value="Changed constructor signature of plugin main class"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="15502"/>
     6    <property name="plugin.main.version" value="17715"/>
    77   
    88    <!-- Configure these properties (replace "..." accordingly).
    99         See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
  • src/org/openstreetmap/josm/plugins/editgpx/data/EditGpxWayPoint.java

     
    11package org.openstreetmap.josm.plugins.editgpx.data;
    22
     3import java.time.Instant;
    34import java.util.HashMap;
    45import java.util.Map;
    56
     
    2021
    2122    public WayPoint createWayPoint() {
    2223        WayPoint result = new WayPoint(getCoor());
    23         result.setTime((long) time);
     24        result.setInstant(Instant.ofEpochSecond((long) time));
    2425        result.attr = attributes;
    2526        return result;
    2627    }