Ignore:
Timestamp:
02.02.2012 19:37:34 (4 months 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.