Changeset 35100 in osm for applications/editors
- Timestamp:
- 2019-08-23T22:05:24+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/imagery-xml-bounds
- Files:
-
- 9 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery-xml-bounds/.classpath
r32680 r35100 2 2 <classpath> 3 3 <classpathentry kind="src" path="src"/> 4 <classpathentry kind="src" output="bintest" path="test/unit"> 5 <attributes> 6 <attribute name="test" value="true"/> 7 </attributes> 8 </classpathentry> 4 9 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> 5 10 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 11 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> 6 12 <classpathentry kind="output" path="bin"/> 7 13 </classpath> -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/ComputeBoundsAction.java
r34326 r35100 49 49 public class ComputeBoundsAction extends AbstractAction implements XmlBoundsConstants { 50 50 51 protected static final DecimalFormat DF = new DecimalFormat("#0.##### ##", new DecimalFormatSymbols(Locale.UK));51 protected static final DecimalFormat DF = new DecimalFormat("#0.#####", new DecimalFormatSymbols(Locale.UK)); 52 52 53 53 protected static final String ACTION_NAME = tr("XML Imagery Bounds");
Note:
See TracChangeset
for help on using the changeset viewer.