From 159fa56c75f78cc0b4e45b3267272c23f86e8afd Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Fri, 25 Apr 2008 04:34:20 +0000 Subject: [PATCH] --- .../springframework/webflow/test/MockViewFactoryCreator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/test/MockViewFactoryCreator.java b/spring-webflow/src/main/java/org/springframework/webflow/test/MockViewFactoryCreator.java index 8178cab1..d038df11 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/test/MockViewFactoryCreator.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/test/MockViewFactoryCreator.java @@ -34,9 +34,9 @@ import org.springframework.webflow.execution.ViewFactory; */ class MockViewFactoryCreator implements ViewFactoryCreator { - public ViewFactory createViewFactory(Expression viewIdExpression, ExpressionParser expressionParser, + public ViewFactory createViewFactory(Expression viewId, ExpressionParser expressionParser, FormatterRegistry formatterRegistry) { - return new MockViewFactory(viewIdExpression); + return new MockViewFactory(viewId); } public String getViewIdByConvention(String viewStateId) {