fredrik 2003/09/24 13:28:26
Modified: lang/src/java/org/apache/commons/lang
NullArgumentException.java UnhandledException.java
Log:
Replacing tabs with spaces to keep checkstyle happy.
Revision Changes Path
1.6 +9 -10
jakarta-commons/lang/src/java/org/apache/commons/lang/NullArgumentException.java
Index: NullArgumentException.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/NullArgumentException.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- NullArgumentException.java 18 Aug 2003 02:22:23 -0000 1.5
+++ NullArgumentException.java 24 Sep 2003 20:28:25 -0000 1.6
@@ -64,13 +64,12 @@
*/
public class NullArgumentException extends IllegalArgumentException {
- /**
- * <p>Instantiates with the given argument name.</p>
- *
- * @param argName the name of the argument that was <code>null</code>.
- */
- public NullArgumentException(String argName) {
- super(argName + " must not be null.");
- }
-
+ /**
+ * <p>Instantiates with the given argument name.</p>
+ *
+ * @param argName the name of the argument that was <code>null</code>.
+ */
+ public NullArgumentException(String argName) {
+ super(argName + " must not be null.");
+ }
}
1.4 +10 -10
jakarta-commons/lang/src/java/org/apache/commons/lang/UnhandledException.java
Index: UnhandledException.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/UnhandledException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- UnhandledException.java 18 Aug 2003 02:22:23 -0000 1.3
+++ UnhandledException.java 24 Sep 2003 20:28:25 -0000 1.4
@@ -58,7 +58,7 @@
/**
* Thrown when it is impossible or undesirable to consume
* or throw a checked exception.
- *
+ *
* @author Matthew Hawthorne
* @since 2.0
* @version $Id$
@@ -67,21 +67,21 @@
/**
* Constructs the exception using a cause.
- *
+ *
* @param cause the underlying cause
*/
- public UnhandledException(Throwable cause) {
- super(cause);
- }
+ public UnhandledException(Throwable cause) {
+ super(cause);
+ }
/**
* Constructs the exception using a message and cause.
- *
+ *
* @param message the message to use
* @param cause the underlying cause
*/
- public UnhandledException(String message, Throwable cause) {
- super(message, cause);
- }
+ public UnhandledException(String message, Throwable cause) {
+ super(message, cause);
+ }
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]