Cleaned up warnings in FilterChainProxyTests

This commit is contained in:
Rob Winch 2012-04-11 17:23:07 -05:00
parent bb8f3bae7c
commit c446697de3
1 changed files with 1 additions and 2 deletions

View File

@ -28,7 +28,6 @@ import java.util.*;
* @author Luke Taylor
* @author Rob Winch
*/
@SuppressWarnings({"unchecked"})
public class FilterChainProxyTests {
private FilterChainProxy fcp;
private RequestMatcher matcher;
@ -41,7 +40,7 @@ public class FilterChainProxyTests {
public void setup() throws Exception {
matcher = mock(RequestMatcher.class);
filter = mock(Filter.class);
doAnswer(new Answer() {
doAnswer(new Answer<Object>() {
public Object answer(InvocationOnMock inv) throws Throwable {
Object[] args = inv.getArguments();
FilterChain fc = (FilterChain) args[2];