Changeset 10245 in josm for trunk


Ignore:
Timestamp:
2016-05-17T18:03:39+02:00 (8 years ago)
Author:
Don-vip
Message:

findbugs - CI_CONFUSED_INHERITANCE

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

Legend:

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

    r10235 r10245  
    573573        if ("auto".equals(Main.pref.get("prefer.ipv6", "auto"))) {
    574574             new Thread(new Runnable() { /* this may take some time (DNS, Connect) */
     575                @Override
    575576                public void run() {
    576577                    boolean hasv6 = false;
  • trunk/src/org/openstreetmap/josm/gui/dialogs/layer/LayerVisibilityAction.java

    r10148 r10245  
    3939 */
    4040public final class LayerVisibilityAction extends AbstractAction implements IEnabledStateUpdating, LayerAction {
    41     protected static final int SLIDER_STEPS = 100;
     41    private static final int SLIDER_STEPS = 100;
    4242    private static final double MAX_SHARPNESS_FACTOR = 2;
    4343    private static final double MAX_COLORFUL_FACTOR = 2;
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java

    r10001 r10245  
    119119        CONTAINS;
    120120
    121         protected static final Set<Op> NEGATED_OPS = EnumSet.of(NEQ, NREGEX);
     121        static final Set<Op> NEGATED_OPS = EnumSet.of(NEQ, NREGEX);
    122122
    123123        /**
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r10242 r10245  
    8080     * Deprecated plugins that are removed on start
    8181     */
    82     protected static final Collection<DeprecatedPlugin> DEPRECATED_PLUGINS;
     82    static final Collection<DeprecatedPlugin> DEPRECATED_PLUGINS;
    8383    static {
    8484        String inCore = tr("integrated into main program");
Note: See TracChangeset for help on using the changeset viewer.