aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/datastructures/linkedlists/template2
1 files changed, 1 insertions, 1 deletions
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;
}