Tidying imports etc

This commit is contained in:
Luke Taylor
2008-03-22 11:44:28 +00:00
parent 1d47945893
commit 2ea94e2cc9
5 changed files with 5 additions and 19 deletions

View File

@@ -87,10 +87,6 @@ public class GrantedAuthorityImplTests extends TestCase {
return this.role.compareTo(((GrantedAuthority)o).getAuthority());
}
private MockGrantedAuthorityImpl() {
super();
}
public String getAuthority() {
return this.role;
}

View File

@@ -17,7 +17,6 @@ package org.springframework.security.config;
import javax.sql.DataSource;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.DisposableBean;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.util.Assert;

View File

@@ -5,7 +5,6 @@ import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import org.junit.Before;
import org.junit.Test;