Ignore:
Timestamp:
2015-05-17T02:56:15+02:00 (9 years ago)
Author:
Don-vip
Message:

code style - Unnecessary Final Modifier

Location:
trunk/src/org/openstreetmap/josm/corrector
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayNoTagCorrector.java

    r7937 r8374  
    5151     * @return tags that imply a semantic meaning from <code>way</code> direction and cannot be changed
    5252     */
    53     public static final TagCollection getDirectionalTags(Way way) {
     53    public static TagCollection getDirectionalTags(Way way) {
    5454        return directionalTags.intersect(TagCollection.from(way));
    5555    }
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java

    r8180 r8374  
    103103         * @return The reversed tag (is equal to <code>tag</code> if no change is needed)
    104104         */
    105         public static final Tag apply(final Tag tag) {
     105        public static Tag apply(final Tag tag) {
    106106            return apply(tag.getKey(), tag.getValue());
    107107        }
     
    113113         * @return The reversed tag (is equal to <code>key=value</code> if no change is needed)
    114114         */
    115         public static final Tag apply(final String key, final String value) {
     115        public static Tag apply(final String key, final String value) {
    116116            String newKey = key;
    117117            String newValue = value;
Note: See TracChangeset for help on using the changeset viewer.