Ignore:
Timestamp:
2015-04-28T00:49:49+02:00 (9 years ago)
Author:
Don-vip
Message:

fix sonar squid:S2039 - Member variable visibility should be specified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java

    r8237 r8285  
    236236                    if (left.matches(e.withPrimitive(r))) {
    237237                        final List<Node> openEnds = MultipolygonCache.getInstance().get(Main.map.mapView, r).getOpenEnds();
    238                         final int openEndIndex = openEnds.indexOf((Node) e.osm);
     238                        final int openEndIndex = openEnds.indexOf(e.osm);
    239239                        if (openEndIndex >= 0) {
    240240                            e.parent = r;
     
    634634        }
    635635
    636         static final double R = 6378135;
     636        private static final double R = 6378135;
    637637
    638638        public static double level2scale(int lvl) {
Note: See TracChangeset for help on using the changeset viewer.