Author: sebb Date: Thu Jan 6 14:51:30 2011 New Revision: 1055901 URL: http://svn.apache.org/viewvc?rev=1055901&view=rev Log: Raw type
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathParseException.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathParseException.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathParseException.java?rev=1055901&r1=1055900&r2=1055901&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathParseException.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/exception/MathParseException.java Thu Jan 6 14:51:30 2011 @@ -37,7 +37,7 @@ public class MathParseException extends */ public MathParseException(String wrong, int position, - Class type) { + Class<?> type) { super(null, null, LocalizedFormats.CANNOT_PARSE_AS_TYPE, wrong, new Integer(position), type.getName()); }