You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2003/02/12 22:02:53 UTC

cvs commit: jakarta-cactus/samples/servlet/src/test-cactus/j2ee13/org/apache/cactus/sample/unit TestJspTagLifecycle.java

vmassol     2003/02/12 13:02:53

  Modified:    samples/servlet/src/test-cactus/j2ee13/org/apache/cactus/sample/unit
                        TestJspTagLifecycle.java
  Log:
  Removed unused member variable. Thanks to Eclipse 2.1M5!
  
  Revision  Changes    Path
  1.2       +3 -3      jakarta-cactus/samples/servlet/src/test-cactus/j2ee13/org/apache/cactus/sample/unit/TestJspTagLifecycle.java
  
  Index: TestJspTagLifecycle.java
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/samples/servlet/src/test-cactus/j2ee13/org/apache/cactus/sample/unit/TestJspTagLifecycle.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestJspTagLifecycle.java	8 Feb 2003 11:17:09 -0000	1.1
  +++ TestJspTagLifecycle.java	12 Feb 2003 21:02:53 -0000	1.2
  @@ -109,7 +109,7 @@
       {
           try
           {
  -            JspTagLifecycle lifecycle = new JspTagLifecycle(null, new OutTag());
  +            new JspTagLifecycle(null, new OutTag());
               fail("Expected NullPointerException");
           }
           catch (NullPointerException npe)
  @@ -126,7 +126,7 @@
       {
           try
           {
  -            JspTagLifecycle lifecycle = new JspTagLifecycle(pageContext, null);
  +            new JspTagLifecycle(pageContext, null);
               fail("Expected NullPointerException");
           }
           catch (NullPointerException npe)
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cactus-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: cactus-dev-help@jakarta.apache.org