Przeglądaj źródła

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

Ben Alex 21 lat temu
rodzic
commit
fde59c2f29

+ 1 - 1
core/src/test/java/org/acegisecurity/MockHttpSession.java

@@ -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) {