Updated Branches: refs/heads/wicket-6.x 6e294161d -> 6db3be25f
Fix a typo in comments and add space around '=' Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/10ea2f3f Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/10ea2f3f Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/10ea2f3f Branch: refs/heads/wicket-6.x Commit: 10ea2f3fc85c205472f8e75cf17752f225d0de19 Parents: 6e29416 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Mon Nov 25 14:37:45 2013 +0100 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Mon Nov 25 14:37:45 2013 +0100 ---------------------------------------------------------------------- .../java/org/apache/wicket/util/tester/BaseWicketTester.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/10ea2f3f/wicket-core/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java b/wicket-core/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java index e8d9a7e..f3d5987 100644 --- a/wicket-core/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java +++ b/wicket-core/src/main/java/org/apache/wicket/util/tester/BaseWicketTester.java @@ -382,7 +382,7 @@ public class BaseWicketTester { CookieCollection responseCookies = new CookieCollection(); - // if the last request is a redirect, all cookies from last response should appear in current reponse + // if the last request is a redirect, all cookies from last response should appear in current response // this call will filter duplicates responseCookies.addAll(lastResponseCookies); for (Cookie cookie : responseCookies.allAsList()) @@ -394,7 +394,7 @@ public class BaseWicketTester // this way, the cookie will be send to the next requested page if (lastRequest != null) { - CookieCollection requestCookies=new CookieCollection(); + CookieCollection requestCookies = new CookieCollection(); // this call will filter duplicates requestCookies.addAll(lastRequest.getCookies()); request.addCookies(requestCookies.asList());
