From 585e5f393af9962b6ab3ddde9bec3ab19533fbb5 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 17 Dec 2008 00:32:21 +0000 Subject: [PATCH] Added warning suppression for deprecation. --- .../annotation/MethodDefinitionSourceEditorTigerTests.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/src/test/java/org/springframework/security/annotation/MethodDefinitionSourceEditorTigerTests.java b/core/src/test/java/org/springframework/security/annotation/MethodDefinitionSourceEditorTigerTests.java index c367588b7d..f8b95da4e8 100644 --- a/core/src/test/java/org/springframework/security/annotation/MethodDefinitionSourceEditorTigerTests.java +++ b/core/src/test/java/org/springframework/security/annotation/MethodDefinitionSourceEditorTigerTests.java @@ -15,12 +15,10 @@ package org.springframework.security.annotation; -import static org.junit.Assert.*; +import static org.junit.Assert.assertEquals; import java.util.List; -import junit.framework.TestCase; - import org.junit.Before; import org.junit.Test; import org.springframework.security.ConfigAttribute; @@ -39,6 +37,7 @@ import org.springframework.security.intercept.method.MockMethodInvocation; * @author Ben Alex * @version $Id$ */ +@SuppressWarnings("deprecation") public class MethodDefinitionSourceEditorTigerTests { private MockMethodInvocation makeUpper; private MockMethodInvocation makeLower;