File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
yoonexample/src/test/java/search/binarysearchtree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,7 @@ class BinarySearchTreeNodeTest {
47
47
int doubleSubTreeNodeData = 8 ;
48
48
49
49
BinarySearchTreeNode <Integer > bstRoot = new LinkedBinarySearchTreeNode <>(RootNodeData ,
50
- (Comparator
51
- .comparingInt (o -> o )));
50
+ (Comparator .comparingInt (o -> o )));
52
51
53
52
bstRoot .insert (doubleSubTreeNodeData );
54
53
bstRoot .insert (1 );
@@ -73,8 +72,7 @@ class BinarySearchTreeNodeTest {
73
72
@ DisplayName ("이진_탐색_트리_제거_테스트2" )
74
73
void 이진_탐색_트리_제거_테스트2 () {
75
74
BinarySearchTreeNode <Integer > bstRoot = new LinkedBinarySearchTreeNode <>(5 ,
76
- (Comparator
77
- .comparingInt (o -> o )));
75
+ (Comparator .comparingInt (o -> o )));
78
76
79
77
bstRoot .insert (8 );
80
78
bstRoot .insert (1 );
You can’t perform that action at this time.
0 commit comments