Changeset 10245 in josm for trunk/src/org
- Timestamp:
- 2016-05-17T18:03:39+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r10235 r10245 573 573 if ("auto".equals(Main.pref.get("prefer.ipv6", "auto"))) { 574 574 new Thread(new Runnable() { /* this may take some time (DNS, Connect) */ 575 @Override 575 576 public void run() { 576 577 boolean hasv6 = false; -
trunk/src/org/openstreetmap/josm/gui/dialogs/layer/LayerVisibilityAction.java
r10148 r10245 39 39 */ 40 40 public final class LayerVisibilityAction extends AbstractAction implements IEnabledStateUpdating, LayerAction { 41 pr otectedstatic final int SLIDER_STEPS = 100;41 private static final int SLIDER_STEPS = 100; 42 42 private static final double MAX_SHARPNESS_FACTOR = 2; 43 43 private static final double MAX_COLORFUL_FACTOR = 2; -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java
r10001 r10245 119 119 CONTAINS; 120 120 121 protectedstatic final Set<Op> NEGATED_OPS = EnumSet.of(NEQ, NREGEX);121 static final Set<Op> NEGATED_OPS = EnumSet.of(NEQ, NREGEX); 122 122 123 123 /** -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r10242 r10245 80 80 * Deprecated plugins that are removed on start 81 81 */ 82 protectedstatic final Collection<DeprecatedPlugin> DEPRECATED_PLUGINS;82 static final Collection<DeprecatedPlugin> DEPRECATED_PLUGINS; 83 83 static { 84 84 String inCore = tr("integrated into main program");
Note:
See TracChangeset
for help on using the changeset viewer.