Ticket #21763: 21763.patch
File 21763.patch, 1.4 KB (added by , 3 years ago) |
---|
-
build.xml
3 3 <!-- enter the SVN commit message --> 4 4 <property name="commit.message" value="Changed constructor signature of plugin main class"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 5502"/>6 <property name="plugin.main.version" value="17715"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). 9 9 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins -
src/org/openstreetmap/josm/plugins/editgpx/data/EditGpxWayPoint.java
1 1 package org.openstreetmap.josm.plugins.editgpx.data; 2 2 3 import java.time.Instant; 3 4 import java.util.HashMap; 4 5 import java.util.Map; 5 6 … … 20 21 21 22 public WayPoint createWayPoint() { 22 23 WayPoint result = new WayPoint(getCoor()); 23 result.set Time((long) time);24 result.setInstant(Instant.ofEpochSecond((long) time)); 24 25 result.attr = attributes; 25 26 return result; 26 27 }