Author: luc Date: Sun Jan 4 11:12:52 2009 New Revision: 731339 URL: http://svn.apache.org/viewvc?rev=731339&view=rev Log: removed unused exception clause
Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseRealMatrix.java Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseRealMatrix.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseRealMatrix.java?rev=731339&r1=731338&r2=731339&view=diff ============================================================================== --- commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseRealMatrix.java (original) +++ commons/proper/math/trunk/src/java/org/apache/commons/math/linear/DenseRealMatrix.java Sun Jan 4 11:12:52 2009 @@ -259,8 +259,7 @@ * @see #toBlocksLayout(double[][]) * @see #DenseRealMatrix(int, int, double[][], boolean) */ - public static double[][] createBlocksLayout(final int rows, final int columns) - throws IllegalArgumentException { + public static double[][] createBlocksLayout(final int rows, final int columns) { final int blockRows = (rows + BLOCK_SIZE - 1) / BLOCK_SIZE; final int blockColumns = (columns + BLOCK_SIZE - 1) / BLOCK_SIZE;