Ignore:
Timestamp:
2017-11-28T00:56:29+01:00 (6 years ago)
Author:
Don-vip
Message:

see #15310 - remove most of deprecated APIs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/conflict/ConflictAddCommand.java

    r12726 r13173  
    1616import org.openstreetmap.josm.data.osm.DefaultNameFormatter;
    1717import org.openstreetmap.josm.data.osm.OsmPrimitive;
    18 import org.openstreetmap.josm.gui.layer.OsmDataLayer;
    1918import org.openstreetmap.josm.tools.ImageProvider;
    2019import org.openstreetmap.josm.tools.Logging;
     
    2726public class ConflictAddCommand extends Command {
    2827    private final Conflict<? extends OsmPrimitive> conflict;
    29 
    30     /**
    31      * Constructs a new {@code ConflictAddCommand}.
    32      * @param layer the data layer. Must not be null.
    33      * @param conflict the conflict to add
    34      * @deprecated to be removed end of 2017. Use {@link #ConflictAddCommand(DataSet, Conflict)} instead
    35      */
    36     @Deprecated
    37     public ConflictAddCommand(OsmDataLayer layer, Conflict<? extends OsmPrimitive> conflict) {
    38         super(layer);
    39         this.conflict = conflict;
    40     }
    4128
    4229    /**
Note: See TracChangeset for help on using the changeset viewer.