You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ad...@apache.org on 2014/08/20 19:39:32 UTC

git commit: Small compilation problem: IRequestCycleSettings instead of RequestCycleSettings

Repository: wicket
Updated Branches:
  refs/heads/master f1586b3cf -> c9270888b


Small compilation problem: IRequestCycleSettings instead of
RequestCycleSettings

Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/c9270888
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/c9270888
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/c9270888

Branch: refs/heads/master
Commit: c9270888b7ea9aaf6436e820e77272931dde23f0
Parents: f1586b3
Author: adelbene <an...@gmail.com>
Authored: Wed Aug 20 19:39:03 2014 +0200
Committer: adelbene <an...@gmail.com>
Committed: Wed Aug 20 19:39:03 2014 +0200

----------------------------------------------------------------------
 .../util/tester/StartComponentInPageRedirectToRenderTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/c9270888/wicket-core/src/test/java/org/apache/wicket/util/tester/StartComponentInPageRedirectToRenderTest.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/java/org/apache/wicket/util/tester/StartComponentInPageRedirectToRenderTest.java b/wicket-core/src/test/java/org/apache/wicket/util/tester/StartComponentInPageRedirectToRenderTest.java
index 686f850..abbb28e 100644
--- a/wicket-core/src/test/java/org/apache/wicket/util/tester/StartComponentInPageRedirectToRenderTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/util/tester/StartComponentInPageRedirectToRenderTest.java
@@ -21,7 +21,7 @@ import org.apache.wicket.WicketTestCase;
 import org.apache.wicket.markup.html.basic.Label;
 import org.apache.wicket.mock.MockApplication;
 import org.apache.wicket.protocol.http.WebApplication;
-import org.apache.wicket.settings.IRequestCycleSettings;
+import org.apache.wicket.settings.RequestCycleSettings;
 import org.junit.Test;
 
 /**
@@ -38,7 +38,7 @@ public class StartComponentInPageRedirectToRenderTest extends WicketTestCase
 			protected void init()
 			{
 				super.init();
-				getRequestCycleSettings().setRenderStrategy(IRequestCycleSettings.RenderStrategy.REDIRECT_TO_RENDER);
+				getRequestCycleSettings().setRenderStrategy(RequestCycleSettings.RenderStrategy.REDIRECT_TO_RENDER);
 			}
 		};
 	}