From 4ce399cb3781a8b86e59080cd705e1ee4548be0e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 22 Jan 2014 17:47:16 +0100 Subject: a public constructore for linked list nodes a level of flexibility to the data structures MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/datastructures/linkedlists/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datastructures/linkedlists/template b/src/datastructures/linkedlists/template index 71c6a84..07ceb60 100644 --- a/src/datastructures/linkedlists/template +++ b/src/datastructures/linkedlists/template @@ -26,7 +26,7 @@ * * @param value The value to store in the list */ - private Node(T value) + public Node(T value) { this.value = value; } -- cgit v1.2.3-70-g09d2