Ignore:
Timestamp:
2012-02-02T19:37:34+01:00 (12 years ago)
Author:
stoecker
Message:

remove deprecation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/CombineWayAction.java

    r4310 r4892  
    106106        }
    107107        return ret;
    108     }
    109 
    110     @Deprecated
    111     public static Way combineWays(Collection<Way> ways) {
    112         Pair<Way, Command> combineResult;
    113         try {
    114             combineResult = combineWaysWorker(ways);
    115         } catch (UserCancelException ex) {
    116             return null;
    117         }
    118         Main.main.undoRedo.add(combineResult.b);
    119         return combineResult.a;
    120108    }
    121109
Note: See TracChangeset for help on using the changeset viewer.