Un-deprecated a widely used method.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1554905 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2014-01-02 20:39:38 +00:00
parent 2b24ae34b7
commit 18a6d9c773
1 changed files with 1 additions and 4 deletions

View File

@ -475,10 +475,7 @@ public class Vector3D implements Serializable, Vector<Euclidean3D> {
return dx + dy + dz;
}
/** {@inheritDoc}
* @deprecated as of 3.3, replaced with {@link #distance(Point)}
*/
@Deprecated
/** {@inheritDoc} */
public double distance(Vector<Euclidean3D> v) {
return distance((Point<Euclidean3D>) v);
}