Cleaned up warnings in FilterChainProxyTests
This commit is contained in:
parent
bb8f3bae7c
commit
c446697de3
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue