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/data/coor/Coordinate.java

    r13140 r13173  
    44import java.io.Serializable;
    55import java.util.Objects;
    6 
    7 import org.openstreetmap.josm.data.osm.BBox;
    86
    97/**
     
    9290    }
    9391
    94     /**
    95      * Creates bbox around this coordinate. Coordinate defines
    96      * center of bbox, its edge will be 2*r.
    97      *
    98      * @param r size
    99      * @return BBox around this coordinate
    100      * @since 6203
    101      * @deprecated use {@link BBox#BBox(double, double, double)} instead
    102      */
    103     @Deprecated
    104     public BBox toBBox(final double r) {
    105         return new BBox(x, y, r);
    106     }
    107 
    10892    @Override
    10993    public int hashCode() {
Note: See TracChangeset for help on using the changeset viewer.