Ad mock method implementation now we're using HttpSession.removeAttribute().

This commit is contained in:
Ben Alex 2004-10-30 23:32:53 +00:00
parent 565c2e580b
commit fde59c2f29
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public class MockHttpSession implements HttpSession {
}
public void removeAttribute(String arg0) {
throw new UnsupportedOperationException("mock method not implemented");
map.remove(arg0);
}
public void removeValue(String arg0) {