#17600 closed enhancement (fixed)
[PATCH] turnlanes shouldn't use deprecated functions
Reported by: | taylor.smock | Owned by: | team |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Plugin turnlanes | Version: | |
Keywords: | Cc: |
Description
I converted OsmPrimitive.getFilteredList
to Utils.filteredCollection
, but I also had to refactor the Utils.java
in turnlanes to TurnlanesUtils.java
in order to avoid having both Utils
stepping on one another.
I don't know if turnlanes is a dependency of other plugins, but I did run find . -name "build.xml" -exec grep -i "turnlane" {} \;
and it only came up with turnlanes and turnlanes-tagging.
Attachments (1)
Change History (5)
by , 6 years ago
Attachment: | 17600.patch added |
---|
comment:4 by , 6 years ago
It was incomplete. I had the changes locally, but I didn't run svn add src/org/openstreetmap/josm/plugins/turnlanes/model/TurnlanesUtils.java
for the svn diff
command.
Thanks for fixing the patch. I honestly can't wait for #16857 to be completed, since I think it will help me avoid mistakes that I have made working with svn
.
Replace deprecated functions and move
Utils.java
toTurnlanesUtils.java
with appropriate name changes.