Ignore:
Timestamp:
2015-10-13T23:50:14+02:00 (9 years ago)
Author:
Don-vip
Message:

sonar - squid:S2325 - "private" methods that don't access instance data should be "static"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/DataSet.java

    r8855 r8870  
    969969    }
    970970
    971     private void deleteWay(Way way) {
     971    private static void deleteWay(Way way) {
    972972        way.setNodes(null);
    973973        way.setDeleted(true);
     
    10991099    }
    11001100
    1101     private void reindexRelation(Relation relation) {
     1101    private static void reindexRelation(Relation relation) {
    11021102        BBox before = relation.getBBox();
    11031103        relation.updatePosition();
Note: See TracChangeset for help on using the changeset viewer.