Ignore:
Timestamp:
30.08.2009 19:07:24 (3 years ago)
Author:
Gubaer
Message:

removed OptionPaneUtil
cleanup of deprecated Layer API
cleanup of deprecated APIs in OsmPrimitive and Way
cleanup of imports

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Way.java

    r1997 r2017  
    11// License: GPL. Copyright 2007 by Immanuel Scholz and others 
    22package org.openstreetmap.josm.data.osm; 
    3  
    4 import static org.openstreetmap.josm.tools.I18n.tr; 
    5 import static org.openstreetmap.josm.tools.I18n.trn; 
    63 
    74import java.util.ArrayList; 
    85import java.util.Arrays; 
    96import java.util.Collection; 
    10 import java.util.HashSet; 
    117import java.util.List; 
    128 
     
    2521     * All way nodes in this way 
    2622     * 
    27      * @deprecated This public field will become private or protected in the future. 
    28      *  Use the new public API instead. 
    29      */ 
    30     @Deprecated 
    31     public final List<Node> nodes = new ArrayList<Node>(); 
     23     */ 
     24    private final List<Node> nodes = new ArrayList<Node>(); 
    3225 
    3326    /** 
Note: See TracChangeset for help on using the changeset viewer.