Author: luc
Date: Mon Jul  8 08:31:49 2013
New Revision: 1500603

URL: http://svn.apache.org/r1500603
Log:
Missing javadoc @param.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegrator.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegrator.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegrator.java?rev=1500603&r1=1500602&r2=1500603&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegrator.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/gauss/GaussIntegrator.java
 Mon Jul  8 08:31:49 2013
@@ -111,7 +111,7 @@ public class GaussIntegrator {
     /**
      * Gets the integration point at the given index.
      * The index must be in the valid range but no check is performed.
-     *
+     * @param index index of the integration point
      * @return the integration point.
      */
     public double getPoint(int index) {
@@ -121,7 +121,7 @@ public class GaussIntegrator {
     /**
      * Gets the weight of the integration point at the given index.
      * The index must be in the valid range but no check is performed.
-     *
+     * @param index index of the integration point
      * @return the weight.
      */
     public double getWeight(int index) {


Reply via email to