This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java | |
index 57f9d84..e179d9e 100644 | |
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java | |
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java | |
@@ -134,7 +134,7 @@ public abstract class ListView<T> extends AbstractRepeater | |
* @param model model containing a list of | |
* @see org.apache.wicket.Component#Component(String, IModel) | |
*/ | |
- public ListView(final String id, final IModel<? extends List<? extends T>> model) | |
+ public ListView(final String id, final IModel<? extends List<T>> model) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java | |
index 57f9d84..d1bdd39 100644 | |
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java | |
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/list/ListView.java | |
@@ -442,7 +442,7 @@ public abstract class ListView<T> extends AbstractRepeater | |
* The list item index | |
* @return The ListItemModel created | |
*/ | |
- protected IModel<T> getListItemModel(final IModel<? extends List<T>> listViewModel, | |
+ protected IModel<? extends T> getListItemModel(final IModel<? extends List<? extends T>> listViewModel, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Licensed to the Apache Software Foundation (ASF) under one or more | |
* contributor license agreements. See the NOTICE file distributed with | |
* this work for additional information regarding copyright ownership. | |
* The ASF licenses this file to You under the Apache License, Version 2.0 | |
* (the "License"); you may not use this file except in compliance with | |
* the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.sun.xml.bind.v2.model.impl; | |
... | |
public class ModelBuilder { | |
... | |
static { | |
try { | |
XmlSchema s = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.net.HttpURLConnection; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import java.util.HashSet; | |
import java.util.Iterator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Een quote van een persoon: bevat de tekst of uitspraak en een attribution | |
* van de persoon die de quote gezegd of geschreven heeft. | |
*/ | |
public class Quote { | |
private String text; | |
private String attribution; | |
public String getText() { | |
return text; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jstack 76650 | |
2013-08-27 10:28:10 | |
Full thread dump Java HotSpot(TM) 64-Bit Server VM (23.25-b01 mixed mode): | |
"Thread-86" daemon prio=5 tid=0x000000011a066000 nid=0x17c2b runnable [0x0000000000000000] | |
java.lang.Thread.State: RUNNABLE | |
"Attach Listener" daemon prio=5 tid=0x0000000119a7c000 nid=0x18307 waiting on condition [0x0000000000000000] | |
java.lang.Thread.State: RUNNABLE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please see https://github.com/dashorst/wicket-rfcs/blob/master/wicket-rfc-0001.txt for the RFC. | |
Please comment either inline in the github repository, or reply to the message | |
thread on the [email protected] mailing list. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package testproject; | |
import static org.junit.Assert.assertNotNull; | |
import static org.junit.Assert.fail; | |
public class Test { | |
public void deadCodeAfterAssertNotNull() { | |
assertNotNull(null); | |
fail(""); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.mongo; | |
import java.io.IOException; | |
import javax.inject.Inject; | |
import javax.servlet.Filter; | |
import javax.servlet.FilterChain; | |
import javax.servlet.FilterConfig; | |
import javax.servlet.ServletException; | |
import javax.servlet.ServletRequest; |