vmassol 01/09/07 08:23:59
Modified: cactus/src/framework/share/org/apache/commons/cactus
WebResponse.java
Log:
removed FIXME comment (thanks to Nicholas Lesiecki)
Revision Changes Path
1.7 +2 -3
jakarta-commons/cactus/src/framework/share/org/apache/commons/cactus/WebResponse.java
Index: WebResponse.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/cactus/src/framework/share/org/apache/commons/cactus/WebResponse.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- WebResponse.java 2001/08/31 16:55:50 1.6
+++ WebResponse.java 2001/09/07 15:23:59 1.7
@@ -72,7 +72,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Vincent Massol</a>
*
- * @version $Id: WebResponse.java,v 1.6 2001/08/31 16:55:50 vmassol Exp $
+ * @version $Id: WebResponse.java,v 1.7 2001/09/07 15:23:59 vmassol Exp $
*/
public class WebResponse
{
@@ -165,8 +165,7 @@
throw new ChainedRuntimeException(e);
}
- // Fixme: I don't know why but if I don't use this dummy stuff I get a
- // ClassCastException !
+ // Dummy variable to explicitely tell the object type to copy.
String[] dummy = new String[lines.size()];
return (String[])(lines.toArray(dummy));
}