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 2008/07/27 16:34:37 UTC

svn commit: r680113 - /commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/geometry/Vector3DFormat.java

Author: luc
Date: Sun Jul 27 07:34:37 2008
New Revision: 680113

URL: http://svn.apache.org/viewvc?rev=680113&view=rev
Log:
fixed javadoc comments pasted from ComplexFormat without care

Modified:
    commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/geometry/Vector3DFormat.java

Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/geometry/Vector3DFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/geometry/Vector3DFormat.java?rev=680113&r1=680112&r2=680113&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/geometry/Vector3DFormat.java (original)
+++ commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/geometry/Vector3DFormat.java Sun Jul 27 07:34:37 2008
@@ -123,7 +123,7 @@
     /**
      * Get the set of locales for which 3D vectors formats are available.
      * <p>This is the same set as the {@link NumberFormat} set.</p>
-     * @return available complex format locales.
+     * @return available 3D vector format locales.
      */
     public static Locale[] getAvailableLocales() {
         return NumberFormat.getAvailableLocales();
@@ -162,17 +162,17 @@
     }
 
     /**
-     * Returns the default complex format for the current locale.
-     * @return the default complex format.
+     * Returns the default 3D vector format for the current locale.
+     * @return the default 3D vector format.
      */
     public static Vector3DFormat getInstance() {
         return getInstance(Locale.getDefault());
     }
 
     /**
-     * Returns the default complex format for the given locale.
+     * Returns the default 3D vector format for the given locale.
      * @param locale the specific locale used by the format.
-     * @return the complex format specific to the given locale.
+     * @return the 3D vector format specific to the given locale.
      */
     public static Vector3DFormat getInstance(final Locale locale) {
         return new Vector3DFormat(getDefaultNumberFormat(locale));