You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2014/01/02 21:39:39 UTC

svn commit: r1554905 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/Vector3D.java

Author: luc
Date: Thu Jan  2 20:39:38 2014
New Revision: 1554905

URL: http://svn.apache.org/r1554905
Log:
Un-deprecated a widely used method.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/Vector3D.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/Vector3D.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/Vector3D.java?rev=1554905&r1=1554904&r2=1554905&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/Vector3D.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/geometry/euclidean/threed/Vector3D.java Thu Jan  2 20:39:38 2014
@@ -475,10 +475,7 @@ public class Vector3D implements Seriali
         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);
     }