Skip to content

Commit b3cde62

Browse files
author
Justin Lin
committed
新增勘誤
1 parent b5e5f9f commit b3cde62

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

images/9_6_typo_1.JPG

1.48 KB
Loading

samples/CH09/Collection/src/cc/openhome/SimpleLinkedList.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
public class SimpleLinkedList {
44
private class Node {
5-
Node(Object o) {
6-
this.elem = o;
5+
Node(Object elem) {
6+
this.elem = elem;
77
}
8-
Object o;
8+
Object elem;
99
Node next;
1010
}
1111

0 commit comments

Comments
 (0)