Changeset 36039 in osm for applications
- Timestamp:
- 2022-11-30T22:42:20+01:00 (2 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/download/CadastreServerReader.java
r34355 r36039 33 33 public DataSet parseOsm(ProgressMonitor progressMonitor) throws OsmTransferException { 34 34 try { 35 progressMonitor.beginTask(tr("Contacting Server..." , 10));35 progressMonitor.beginTask(tr("Contacting Server..."), 10); 36 36 return new EdigeoPciImporter().parseDataSet(url, data); 37 37 } catch (Exception e) { -
applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/io/JosmServerLocationReader.java
r33493 r36039 31 31 throws OsmTransferException { 32 32 try { 33 progressMonitor.beginTask(tr("Contacting Server..." , 10));33 progressMonitor.beginTask(tr("Contacting Server..."), 10); 34 34 return new XmlBoundsImporter().parseDataSet(url); 35 35 } catch (IOException | SAXException e) { -
applications/editors/josm/plugins/pdfimport/src/org/openstreetmap/josm/plugins/pdfimport/pdfbox/PdfBoxParser.java
r34609 r36039 24 24 25 25 public void parse(File file, int maxPaths, ProgressMonitor monitor) throws IOException { 26 monitor.beginTask(tr("Parsing PDF" , 1));26 monitor.beginTask(tr("Parsing PDF"), 1); 27 27 28 28 try (PDDocument document = PDDocument.load(file)) { -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/io/SigReader.java
r34155 r36039 202 202 SigReader reader = new SigReader(); 203 203 try { 204 progressMonitor.beginTask(tr("Prepare stuff..." , 2));204 progressMonitor.beginTask(tr("Prepare stuff..."), 2); 205 205 progressMonitor.indeterminateSubTask(tr("Parsing Signature data...")); 206 206
Note:
See TracChangeset
for help on using the changeset viewer.