Ignore:
Timestamp:
2016-05-31T00:01:20+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - various code cleanup fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/NodeElement.java

    r10242 r10305  
    374374        NodeElement that = (NodeElement) obj;
    375375        return Objects.equals(mapImage, that.mapImage) &&
    376                 Objects.equals(mapImageAngle, that.mapImageAngle) &&
    377                 Objects.equals(symbol, that.symbol);
     376               Objects.equals(mapImageAngle, that.mapImageAngle) &&
     377               Objects.equals(symbol, that.symbol);
    378378    }
    379379
    380380    @Override
    381381    public String toString() {
    382         StringBuilder s = new StringBuilder(64).append("NodeElemStyle{");
    383         s.append(super.toString());
     382        StringBuilder s = new StringBuilder(64).append("NodeElemStyle{").append(super.toString());
    384383        if (mapImage != null) {
    385384            s.append(" icon=[" + mapImage + ']');
Note: See TracChangeset for help on using the changeset viewer.