Changeset 36375 in osm for applications/editors/josm
- Timestamp:
- 2025-01-28T17:01:13+01:00 (10 days ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r36325 r36375 137 137 <compilerarg value="-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED" unless:set="noErrorProne"/> 138 138 <compilerarg line="-XDcompilePolicy=simple"/> 139 <compilerarg value="--should-stop=ifError=FLOW" /> 139 140 <compilerarg value="-processorpath"/> 140 141 <compilerarg pathref="errorprone.classpath"/> -
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryUtils.java
r35976 r36375 106 106 if (firstNode.isNew() && !secondNode.isNew()) 107 107 return buildReplaceNodeCommand(secondNode, firstNode); 108 else if (!firstNode.isNew() && secondNode.isNew()) 109 return buildReplaceNodeCommand(firstNode, secondNode); 110 else 108 else // if (!firstNode.isNew() && secondNode.isNew()) -- merge same code branches 111 109 // both nodes are new OR uploaded, act like MergeNodes, moving first 112 110 // node to second
Note:
See TracChangeset
for help on using the changeset viewer.