diff --git a/core-tiger/src/test/java/org/acegisecurity/intercept/method/MethodDefinitionSourceEditorTigerTests.java b/core-tiger/src/test/java/org/acegisecurity/intercept/method/MethodDefinitionSourceEditorTigerTests.java index 05dda2da95..7229b7c022 100644 --- a/core-tiger/src/test/java/org/acegisecurity/intercept/method/MethodDefinitionSourceEditorTigerTests.java +++ b/core-tiger/src/test/java/org/acegisecurity/intercept/method/MethodDefinitionSourceEditorTigerTests.java @@ -15,6 +15,9 @@ package org.acegisecurity.intercept.method; +import java.lang.reflect.AccessibleObject; +import java.lang.reflect.Method; + import junit.framework.TestCase; import org.acegisecurity.ConfigAttributeDefinition; @@ -25,12 +28,8 @@ import org.acegisecurity.PersonServiceImpl; import org.acegisecurity.SecurityConfig; import org.acegisecurity.Service; import org.acegisecurity.ServiceImpl; - import org.aopalliance.intercept.MethodInvocation; -import java.lang.reflect.AccessibleObject; -import java.lang.reflect.Method; - /** * Extra tests to demonstrate generics behaviour with @@ -57,7 +56,7 @@ public class MethodDefinitionSourceEditorTigerTests extends TestCase { } public static void main(String[] args) { - junit.textui.TestRunner.run(MethodDefinitionSourceEditorTests.class); + junit.textui.TestRunner.run(MethodDefinitionSourceEditorTigerTests.class); } public void testConcreteClassInvocationsAlsoReturnDefinitionsAgainstInterface()