Skip to content

Commit a207f7c

Browse files
committed
LinkedList(The madman implementation)
1 parent bf12543 commit a207f7c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

group18/935542673/Coding/src/com/ikook/basic_data_structure/MyLinkedList.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ private static class Node {
294294
Node next; // 下一个节点
295295

296296
public Node(Node previous, Object data, Node next) {
297-
super();
298297
this.previous = previous;
299298
this.data = data;
300299
this.next = next;

0 commit comments

Comments
 (0)