Author: psteitz
Date: Sat May 16 14:29:07 2009
New Revision: 775470

URL: http://svn.apache.org/viewvc?rev=775470&view=rev
Log:
Javadoc fix.

Modified:
    
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTestImpl.java

Modified: 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTestImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTestImpl.java?rev=775470&r1=775469&r2=775470&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTestImpl.java
 (original)
+++ 
commons/proper/math/trunk/src/java/org/apache/commons/math/stat/inference/ChiSquareTestImpl.java
 Sat May 16 14:29:07 2009
@@ -348,12 +348,11 @@
     //---------------------  Private array methods -- should find a utility 
home for these
     
     /**
-     * Returns true iff input array is rectangular.
+     * Throws IllegalArgumentException if the input array is not rectangular.
      * 
      * @param in array to be tested
-     * @return true if the array is rectangular
      * @throws NullPointerException if input array is null
-     * @throws ArrayIndexOutOfBoundsException if input array is empty
+     * @throws IllegalArgumentException if input array is not rectangular
      */
     private void checkRectangular(long[][] in) {
         for (int i = 1; i < in.length; i++) {


Reply via email to