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 2016/05/21 11:18:07 UTC

wicket git commit: Don't use Java 7 in Wicket 6.x

Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x a58cac605 -> c5450392c


Don't use Java 7 in Wicket 6.x


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

Branch: refs/heads/wicket-6.x
Commit: c5450392ce8946521c2e10a681571b5179c4bd5a
Parents: a58cac6
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sat May 21 13:17:43 2016 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sat May 21 13:17:43 2016 +0200

----------------------------------------------------------------------
 .../apache/wicket/protocol/http/RequestLoggerLiveSessionsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/c5450392/wicket-core/src/test/java/org/apache/wicket/protocol/http/RequestLoggerLiveSessionsTest.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/java/org/apache/wicket/protocol/http/RequestLoggerLiveSessionsTest.java b/wicket-core/src/test/java/org/apache/wicket/protocol/http/RequestLoggerLiveSessionsTest.java
index edbc552..c17d55a 100644
--- a/wicket-core/src/test/java/org/apache/wicket/protocol/http/RequestLoggerLiveSessionsTest.java
+++ b/wicket-core/src/test/java/org/apache/wicket/protocol/http/RequestLoggerLiveSessionsTest.java
@@ -34,7 +34,7 @@ public class RequestLoggerLiveSessionsTest
 {
 	private final RequestLogger requestLogger = new RequestLogger();
 	
-	private final ArrayList<String> sessionIds = new ArrayList<>();
+	private final ArrayList<String> sessionIds = new ArrayList<String>();
 
 	@Test
 	public void concurrentModification() {