You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pa...@apache.org on 2002/08/15 21:12:09 UTC

cvs commit: jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime BodyContentImpl.java

patrickl    2002/08/15 12:12:09

  Modified:    jasper2/src/share/org/apache/jasper/compiler Node.java
               jasper2/src/share/org/apache/jasper/runtime
                        BodyContentImpl.java
  Log:
  Correct Javadoc errors
  Submitted by:	Ryan Lubke (ryan.lubke@sun.com)
  
  Revision  Changes    Path
  1.24      +4 -4      jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Node.java
  
  Index: Node.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/compiler/Node.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Node.java	31 Jul 2002 21:42:27 -0000	1.23
  +++ Node.java	15 Aug 2002 19:12:09 -0000	1.24
  @@ -291,7 +291,7 @@
   	}
   
   	/**
  -	 * @ return The enclosing root to this root.  Usually represents the
  +	 * @return The enclosing root to this root.  Usually represents the
   	 * page that includes this one.
   	 */
   	public Root getParentRoot() {
  
  
  
  1.5       +2 -2      jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/BodyContentImpl.java
  
  Index: BodyContentImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/runtime/BodyContentImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BodyContentImpl.java	10 Jun 2002 20:12:27 -0000	1.4
  +++ BodyContentImpl.java	15 Aug 2002 19:12:09 -0000	1.5
  @@ -518,7 +518,7 @@
        * Note: this is after evaluation!!  There are no scriptlets,
        * etc in this stream.
        *
  -     * @returns the value of this BodyJspWriter as a Reader
  +     * @return the value of this BodyJspWriter as a Reader
        */
       public Reader getReader() {
           return new CharArrayReader (cb, 0, nextChar);
  @@ -529,7 +529,7 @@
        * Note: this is after evaluation!!  There are no scriptlets,
        * etc in this stream.
        *
  -     * @returns the value of the BodyJspWriter as a String
  +     * @return the value of the BodyJspWriter as a String
        */
       public String getString() {
           return new String(cb, 0, nextChar);
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>