Ignore:
Timestamp:
2015-05-17T02:56:15+02:00 (9 years ago)
Author:
Don-vip
Message:

code style - Unnecessary Final Modifier

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/relations/MultipolygonCache.java

    r7937 r8374  
    5858     * @return the unique instance
    5959     */
    60     public static final MultipolygonCache getInstance() {
     60    public static MultipolygonCache getInstance() {
    6161        return INSTANCE;
    6262    }
     
    147147    }
    148148
    149     private static final boolean isMultipolygon(OsmPrimitive p) {
     149    private static boolean isMultipolygon(OsmPrimitive p) {
    150150        return p instanceof Relation && ((Relation) p).isMultipolygon();
    151151    }
Note: See TracChangeset for help on using the changeset viewer.