diff --git a/spring-webflow/src/test/java/org/springframework/webflow/engine/impl/FlowExecutionImplTests.java b/spring-webflow/src/test/java/org/springframework/webflow/engine/impl/FlowExecutionImplTests.java index 6a22bbf4..cee1fefb 100644 --- a/spring-webflow/src/test/java/org/springframework/webflow/engine/impl/FlowExecutionImplTests.java +++ b/spring-webflow/src/test/java/org/springframework/webflow/engine/impl/FlowExecutionImplTests.java @@ -28,18 +28,15 @@ import org.springframework.webflow.engine.StubViewFactory; import org.springframework.webflow.engine.Transition; import org.springframework.webflow.engine.ViewState; import org.springframework.webflow.engine.support.DefaultTargetStateResolver; -import org.springframework.webflow.execution.FlowExecution; import org.springframework.webflow.execution.FlowExecutionException; -import org.springframework.webflow.execution.FlowExecutionKey; -import org.springframework.webflow.execution.FlowExecutionKeyFactory; import org.springframework.webflow.execution.FlowExecutionListener; import org.springframework.webflow.execution.FlowExecutionListenerAdapter; import org.springframework.webflow.execution.FlowSession; import org.springframework.webflow.execution.MockFlowExecutionListener; import org.springframework.webflow.execution.RequestContext; import org.springframework.webflow.execution.RequestContextHolder; -import org.springframework.webflow.test.GeneratedFlowExecutionKey; import org.springframework.webflow.test.MockExternalContext; +import org.springframework.webflow.test.MockFlowExecutionKeyFactory; /** * General flow execution tests. @@ -352,10 +349,4 @@ public class FlowExecutionImplTests extends TestCase { } - private static class MockFlowExecutionKeyFactory implements FlowExecutionKeyFactory { - public FlowExecutionKey getKey(FlowExecution execution) { - return new GeneratedFlowExecutionKey(); - } - } - } \ No newline at end of file