Skip to content

Commit db4e8fc

Browse files
authored
한글화
1 parent 557b0a9 commit db4e8fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/effectivejava/chapter4/item18/ForwardingSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package effectivejava.chapter4.item18;
22
import java.util.*;
33

4-
// Reusable forwarding class (Page 90)
4+
// 코드 18-3 재사용할 수 있는 전달 클래스 (118쪽)
55
public class ForwardingSet<E> implements Set<E> {
66
private final Set<E> s;
77
public ForwardingSet(Set<E> s) { this.s = s; }

0 commit comments

Comments
 (0)