1 Reply Latest reply on Aug 5, 2007 4:26 AM by christian.bauer

    bug in MockHttpSession.java

    matt.drees

      It's currently impossible to remove objects from the mock session.

      MockHttpSession.java line 94

       public void setAttribute(String att, Object value)
       {
       if (value==null)
       {
       attributes.remove(value);
       }
      


      should be
       public void setAttribute(String att, Object value)
       {
       if (value==null)
       {
       attributes.remove(att);
       }