Changeset 19422 in josm for trunk/src


Ignore:
Timestamp:
2025-07-10T19:32:15+02:00 (5 days ago)
Author:
stoecker
Message:

checkstyle

Location:
trunk/src/org/openstreetmap/josm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/CoordinateInfoViewer.java

    r19421 r19422  
    450450        public void actionPerformed(ActionEvent e) {
    451451            OsmPrimitive primitive = getPrimitiveFromDataSet(PointInTimeType.REFERENCE_POINT_IN_TIME);
    452             if (!(primitive instanceof Node) || ((Node)primitive).getEastNorth() == null) {
     452            if (!(primitive instanceof Node) || ((Node) primitive).getEastNorth() == null) {
    453453                return;
    454454            }
  • trunk/src/org/openstreetmap/josm/io/OsmApiException.java

    r19420 r19422  
    196196            if (!eb.isEmpty() && !eb.equals(eh)) {
    197197                sb.append(", Error Body=<")
    198                 .append(eb.replaceAll("<[^>]+>",""))
     198                .append(eb.replaceAll("<[^>]+>", ""))
    199199                .append('>');
    200200            }
Note: See TracChangeset for help on using the changeset viewer.