Ignore:
Timestamp:
2023-08-22T17:40:36+02:00 (17 months ago)
Author:
taylor.smock
Message:

Use jakarta.json instead of java.json

This also fixes various lint issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GeographicReader.java

    r36072 r36122  
    1818import java.util.TreeMap;
    1919
    20 import javax.json.JsonArray;
    21 import javax.json.JsonObject;
    22 import javax.json.JsonReader;
    23 import javax.json.spi.JsonProvider;
     20import jakarta.json.JsonArray;
     21import jakarta.json.JsonObject;
     22import jakarta.json.JsonReader;
     23import jakarta.json.spi.JsonProvider;
    2424import javax.swing.JOptionPane;
    2525
     
    238238                // CHECKSTYLE.OFF: LineLength
    239239                dlg.setContent("<html>" +
    240                         tr("JOSM was unable to find a strict mathematical transformation between ''{0}'' and WGS84.<br /><br />"+
    241                         "Do you want to try a <i>lenient</i> method, which will perform a non-precise transformation (<b>with location errors up to 1 km</b>) ?<br/><br/>"+
     240                        tr("JOSM was unable to find a strict mathematical transformation between ''{0}'' and WGS84.<br /><br />" +
     241                        "Do you want to try a <i>lenient</i> method, which will perform a non-precise transformation " +
     242                        "(<b>with location errors up to 1 km</b>) ?<br/><br/>"+
    242243                        "If so, <b>do NOT upload</b> such data to OSM !", crs.getName())+
    243244                        "</html>");
Note: See TracChangeset for help on using the changeset viewer.