Added warning suppression for deprecation.
This commit is contained in:
parent
d8b5f770e9
commit
585e5f393a
|
@ -15,12 +15,10 @@
|
||||||
|
|
||||||
package org.springframework.security.annotation;
|
package org.springframework.security.annotation;
|
||||||
|
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
|
||||||
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.springframework.security.ConfigAttribute;
|
import org.springframework.security.ConfigAttribute;
|
||||||
|
@ -39,6 +37,7 @@ import org.springframework.security.intercept.method.MockMethodInvocation;
|
||||||
* @author Ben Alex
|
* @author Ben Alex
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
public class MethodDefinitionSourceEditorTigerTests {
|
public class MethodDefinitionSourceEditorTigerTests {
|
||||||
private MockMethodInvocation makeUpper;
|
private MockMethodInvocation makeUpper;
|
||||||
private MockMethodInvocation makeLower;
|
private MockMethodInvocation makeLower;
|
||||||
|
|
Loading…
Reference in New Issue