You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2019/10/10 10:21:49 UTC

[wicket] branch wicket-7.x updated: WICKET-6708 Fix compilation issue after git cherry-pick

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch wicket-7.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-7.x by this push:
     new 7a740a2  WICKET-6708 Fix compilation issue after git cherry-pick
7a740a2 is described below

commit 7a740a24f901d23bb6c3813337bd6797d43a1e33
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Thu Oct 10 13:21:12 2019 +0300

    WICKET-6708 Fix compilation issue after git cherry-pick
---
 .../wicket/extensions/markup/html/form/select/SelectTestPage.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/form/select/SelectTestPage.java b/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/form/select/SelectTestPage.java
index c87a504..f09b3cd 100644
--- a/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/form/select/SelectTestPage.java
+++ b/wicket-extensions/src/test/java/org/apache/wicket/extensions/markup/html/form/select/SelectTestPage.java
@@ -35,7 +35,7 @@ public class SelectTestPage extends WebPage
 		form = new Form<>("form");
 		add(form);
 
-		select = new Select<>("select", new Model<>(null));
+		select = new Select<>("select", new Model<String>(null));
 		form.add(select);
 
 		select.add(new SelectOption<>("option0", new Model<>("OPTION_0")));