- Timestamp:
- 2016-05-17T02:32:56+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/DefaultNameFormatter.java
r10044 r10238 95 95 * A ? prefix indicates a boolean value, for which the key (instead of the value) is used. 96 96 */ 97 pr otectedstatic final String[] DEFAULT_NAMING_TAGS_FOR_RELATIONS = {"name", "ref", "restriction", "landuse", "natural",97 private static final String[] DEFAULT_NAMING_TAGS_FOR_RELATIONS = {"name", "ref", "restriction", "landuse", "natural", 98 98 "public_transport", ":LocationCode", "note", "?building"}; 99 99 -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/NodeElement.java
r10198 r10238 92 92 public static final StyleElementList DEFAULT_NODE_STYLELIST_TEXT = new StyleElementList(NodeElement.SIMPLE_NODE_ELEMSTYLE, 93 93 BoxTextElement.SIMPLE_NODE_TEXT_ELEMSTYLE); 94 95 private static final String[] ICON_KEYS = {ICON_IMAGE, ICON_WIDTH, ICON_HEIGHT, ICON_OPACITY, ICON_OFFSET_X, ICON_OFFSET_Y}; 94 96 95 97 protected NodeElement(Cascade c, MapImage mapImage, Symbol symbol, float defaultMajorZindex, RotationAngle rotationAngle) { -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/RepeatImageElement.java
r9371 r10238 22 22 public float phase; 23 23 public LineImageAlignment align; 24 25 private static final String[] REPEAT_IMAGE_KEYS = {REPEAT_IMAGE, REPEAT_IMAGE_WIDTH, REPEAT_IMAGE_HEIGHT, REPEAT_IMAGE_OPACITY, 26 null, null}; 24 27 25 28 public RepeatImageElement(Cascade c, MapImage pattern, float offset, float spacing, float phase, LineImageAlignment align) { -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/StyleElement.java
r10001 r10238 24 24 protected static final int ICON_OFFSET_X_IDX = 4; 25 25 protected static final int ICON_OFFSET_Y_IDX = 5; 26 protected static final String[] ICON_KEYS = {ICON_IMAGE, ICON_WIDTH, ICON_HEIGHT, ICON_OPACITY, ICON_OFFSET_X, ICON_OFFSET_Y};27 protected static final String[] REPEAT_IMAGE_KEYS = {REPEAT_IMAGE, REPEAT_IMAGE_WIDTH, REPEAT_IMAGE_HEIGHT, REPEAT_IMAGE_OPACITY,28 null, null};29 26 30 27 public float majorZIndex; -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r10216 r10238 220 220 * List of unmaintained plugins. Not really up-to-date as the vast majority of plugins are not maintained after a few months, sadly... 221 221 */ 222 static final String[] UNMAINTAINED_PLUGINS = new String[] {222 static final List<String> UNMAINTAINED_PLUGINS = Collections.unmodifiableList(Arrays.asList( 223 223 "gpsbabelgui", 224 224 "Intersect_way", … … 226 226 "LaneConnector", // See #11468, #11518, https://github.com/TrifanAdrian/LanecConnectorPlugin/issues/1 227 227 "Remove.redundant.points" // See #11468, #11518, https://github.com/bularcasergiu/RemoveRedundantPoints (not even created an issue...) 228 };228 )); 229 229 230 230 /** … … 1486 1486 */ 1487 1487 public static Set<String> getDeprecatedAndUnmaintainedPlugins() { 1488 Set<String> result = new HashSet<>(DEPRECATED_PLUGINS.size() + UNMAINTAINED_PLUGINS. length);1488 Set<String> result = new HashSet<>(DEPRECATED_PLUGINS.size() + UNMAINTAINED_PLUGINS.size()); 1489 1489 for (DeprecatedPlugin dp : DEPRECATED_PLUGINS) { 1490 1490 result.add(dp.name); 1491 1491 } 1492 result.addAll( Arrays.asList(UNMAINTAINED_PLUGINS));1492 result.addAll(UNMAINTAINED_PLUGINS); 1493 1493 return result; 1494 1494 }
Note:
See TracChangeset
for help on using the changeset viewer.