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 2014/02/14 14:10:29 UTC

[3/4] git commit: Java 7 diamonds

Java 7 diamonds


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

Branch: refs/heads/sandbox/component-queueing-2
Commit: fcdc251d480844072cd4c139b77e0b95efa2ca1c
Parents: 1c1ee04
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri Feb 14 15:05:13 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Feb 14 15:05:13 2014 +0200

----------------------------------------------------------------------
 wicket-core/src/test/java/org/apache/wicket/queueing/Path.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/fcdc251d/wicket-core/src/test/java/org/apache/wicket/queueing/Path.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/test/java/org/apache/wicket/queueing/Path.java b/wicket-core/src/test/java/org/apache/wicket/queueing/Path.java
index 5582260..7e0aa9a 100644
--- a/wicket-core/src/test/java/org/apache/wicket/queueing/Path.java
+++ b/wicket-core/src/test/java/org/apache/wicket/queueing/Path.java
@@ -29,7 +29,7 @@ class Path implements Iterable<Path.Segment>
 
 	public Path()
 	{
-		segments = new ArrayList<Segment>();
+		segments = new ArrayList<>();
 	}
 
 	public Path(Component... components)