Changeset 36272 in osm for applications/editors/josm/plugins/graphview
- Timestamp:
- 2024-06-05T19:04:29+02:00 (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/core/property/RoadIncline.java
r32620 r36272 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.plugins.graphview.core.property; 3 4 import java.util.Objects; 3 5 4 6 import org.openstreetmap.josm.plugins.graphview.core.access.AccessParameters; … … 18 20 public <N, W, R, M> Float evaluateW(W way, boolean forward, AccessParameters accessParameters, 19 21 DataSource<N, W, R, M> dataSource) { 20 assert way != null && accessParameters != null && dataSource != null; 22 Objects.requireNonNull(way, "way"); 23 Objects.requireNonNull(dataSource, "dataSource"); 21 24 22 25 TagGroup tags = dataSource.getTagsW(way);
Note:
See TracChangeset
for help on using the changeset viewer.