From bd9b1995998633827f1b1ceb48704763eb3fc447 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 14 Nov 2008 00:28:54 +0000 Subject: [PATCH] Import cleaning. --- .../web/WebInvocationPrivilegeEvaluatorTests.java | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/core/src/test/java/org/springframework/security/intercept/web/WebInvocationPrivilegeEvaluatorTests.java b/core/src/test/java/org/springframework/security/intercept/web/WebInvocationPrivilegeEvaluatorTests.java index 15b5195ce5..22b6b5786c 100644 --- a/core/src/test/java/org/springframework/security/intercept/web/WebInvocationPrivilegeEvaluatorTests.java +++ b/core/src/test/java/org/springframework/security/intercept/web/WebInvocationPrivilegeEvaluatorTests.java @@ -15,13 +15,12 @@ package org.springframework.security.intercept.web; -import static org.junit.Assert.*; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; import static org.springframework.security.matcher.AuthenticationMatcher.anAuthenticationWithUsername; import java.util.List; -import junit.framework.TestCase; - import org.jmock.Expectations; import org.jmock.Mockery; import org.jmock.integration.junit4.JUnit4Mockery; @@ -32,21 +31,12 @@ import org.springframework.security.AccessDecisionManager; import org.springframework.security.AccessDeniedException; import org.springframework.security.Authentication; import org.springframework.security.AuthenticationManager; -import org.springframework.security.GrantedAuthority; -import org.springframework.security.GrantedAuthorityImpl; import org.springframework.security.MockApplicationEventPublisher; import org.springframework.security.RunAsManager; -import org.springframework.security.ConfigAttribute; - import org.springframework.security.context.SecurityContextHolder; import org.springframework.security.providers.TestingAuthenticationToken; -import org.springframework.security.providers.UsernamePasswordAuthenticationToken; - import org.springframework.security.util.FilterInvocationUtils; -import org.springframework.context.ApplicationContext; -import org.springframework.context.support.ClassPathXmlApplicationContext; - /** * Tests {@link org.springframework.security.intercept.web.WebInvocationPrivilegeEvaluator}.