remm 01/11/29 09:17:32 Modified: jasper/src/share/org/apache/jasper/runtime BodyContentImpl.java JspWriterImpl.java Log: - Remove the @see tags, which weren't adding any really useful information, but were causing Javadoc warnings. Revision Changes Path 1.3 +0 -5 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/BodyContentImpl.java Index: BodyContentImpl.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/BodyContentImpl.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- BodyContentImpl.java 2001/03/12 22:17:33 1.2 +++ BodyContentImpl.java 2001/11/29 17:17:31 1.3 @@ -244,7 +244,6 @@ * method. * * @param i The <code>int</code> to be printed - * @see java.lang.Integer#toString(int) * @throws java.io.IOException */ @@ -260,7 +259,6 @@ * method. * * @param l The <code>long</code> to be printed - * @see java.lang.Long#toString(long) * @throws java.io.IOException */ @@ -276,7 +274,6 @@ * method. * * @param f The <code>float</code> to be printed - * @see java.lang.Float#toString(float) * @throws java.io.IOException */ @@ -292,7 +289,6 @@ * #write(int)}</code> method. * * @param d The <code>double</code> to be printed - * @see java.lang.Double#toString(double) * @throws java.io.IOException */ @@ -342,7 +338,6 @@ * method. * * @param obj The <code>Object</code> to be printed - * @see java.lang.Object#toString() * @throws java.io.IOException */ 1.2 +3 -8 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/JspWriterImpl.java Index: JspWriterImpl.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/JspWriterImpl.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- JspWriterImpl.java 2000/08/12 00:52:12 1.1 +++ JspWriterImpl.java 2001/11/29 17:17:31 1.2 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/JspWriterImpl.java,v 1.1 2000/08/12 00:52:12 pierred Exp $ - * $Revision: 1.1 $ - * $Date: 2000/08/12 00:52:12 $ + * $Header: /home/cvs/jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/runtime/JspWriterImpl.java,v 1.2 2001/11/29 17:17:31 remm Exp $ + * $Revision: 1.2 $ + * $Date: 2001/11/29 17:17:31 $ * * ==================================================================== * @@ -434,7 +434,6 @@ * method. * * @param i The <code>int</code> to be printed - * @see java.lang.Integer#toString(int) */ public void print(int i) throws IOException { write(String.valueOf(i)); @@ -448,7 +447,6 @@ * method. * * @param l The <code>long</code> to be printed - * @see java.lang.Long#toString(long) */ public void print(long l) throws IOException { write(String.valueOf(l)); @@ -462,7 +460,6 @@ * method. * * @param f The <code>float</code> to be printed - * @see java.lang.Float#toString(float) */ public void print(float f) throws IOException { write(String.valueOf(f)); @@ -476,7 +473,6 @@ * #write(int)}</code> method. * * @param d The <code>double</code> to be printed - * @see java.lang.Double#toString(double) */ public void print(double d) throws IOException { write(String.valueOf(d)); @@ -520,7 +516,6 @@ * method. * * @param obj The <code>Object</code> to be printed - * @see java.lang.Object#toString() */ public void print(Object obj) throws IOException { write(String.valueOf(obj));
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>