You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@velocity.apache.org by si...@apache.org on 2002/04/29 07:20:51 UTC

cvs commit: jakarta-velocity-tools/struts/src/java/org/apache/velocity/tools/struts LinkTool.java

sidler      02/04/28 22:20:51

  Modified:    struts/src/java/org/apache/velocity/tools/struts
                        LinkTool.java
  Log:
  Fixed some formatting problems (Thanks, Dan)
  
  Revision  Changes    Path
  1.6       +5 -5      jakarta-velocity-tools/struts/src/java/org/apache/velocity/tools/struts/LinkTool.java
  
  Index: LinkTool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-velocity-tools/struts/src/java/org/apache/velocity/tools/struts/LinkTool.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- LinkTool.java	15 Apr 2002 18:30:28 -0000	1.5
  +++ LinkTool.java	29 Apr 2002 05:20:51 -0000	1.6
  @@ -86,7 +86,7 @@
    * @author <a href="mailto:sidler@teamup.com">Gabe Sidler</a>
    * @author <a href="mailto:nathan@esha.com">Nathan Bubna</a>
    *
  - * @version $Id: LinkTool.java,v 1.5 2002/04/15 18:30:28 sidler Exp $
  + * @version $Id: LinkTool.java,v 1.6 2002/04/29 05:20:51 sidler Exp $
    * 
    */
   public class LinkTool extends LogEnabledViewToolImpl 
  @@ -142,7 +142,7 @@
       public LinkTool()
       {
           request = null;
  -		response = null;
  +        response = null;
           session = null;
           application = null;
           
  @@ -158,7 +158,7 @@
       private LinkTool(ViewContext context)
       {
           this.request = context.getRequest();
  -		this.response = context.getResponse();
  +        this.response = context.getResponse();
           this.application = context.getServletContext();    
   
           this.uri = null;
  @@ -177,7 +177,7 @@
       private LinkTool(LinkTool that, QueryPair pair)
       {
           this.request = that.request;
  -		this.response = that.response;
  +        this.response = that.response;
           this.application = that.application;    
           this.uri = that.uri;
           if (that.queryData != null)
  @@ -205,7 +205,7 @@
       private LinkTool(LinkTool that, String uri)
       {
           this.request = that.request;
  -		this.response = that.response;
  +        this.response = that.response;
           this.application = that.application;    
           //set to new uri
           this.uri = uri;
  
  
  

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