Update of /cvsroot/mockobjects/mockobjects-java/src/j2ee/1.3/com/mockobjects/servlet
In directory sc8-pr-cvs1:/tmp/cvs-serv7064/src/j2ee/1.3/com/mockobjects/servlet
Modified Files:
MockHttpSession.java
Log Message:
Attribute patch from Marvin Lau
Index: MockHttpSession.java
===================================================================
RCS file: /cvsroot/mockobjects/mockobjects-java/src/j2ee/1.3/com/mockobjects/servlet/MockHttpSession.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- MockHttpSession.java 28 Aug 2002 18:27:11 -0000 1.3
+++ MockHttpSession.java 24 Mar 2003 11:10:20 -0000 1.4
@@ -93,6 +93,7 @@
public void removeAttribute(String anAttributeName) {
myRemovedAttributes.addActual(anAttributeName);
+ myAttributeValues.remove(anAttributeName);
}
public void removeValue(String arg1) {
|