mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-08 18:32:56 +08:00
remove unused variable
This commit is contained in:
@ -12,7 +12,6 @@ class LinkedList {
|
||||
|
||||
public void insert(int data) {
|
||||
|
||||
Node temp = Head;
|
||||
Node newnode = new Node(data);
|
||||
|
||||
size++;
|
||||
|
Reference in New Issue
Block a user