Fixed the review comments
This commit is contained in:
parent
c865567b71
commit
5ca67c9ac7
|
@ -1,4 +1,4 @@
|
|||
package com.baeldung.list;
|
||||
package com.baeldung.circularlinkedlist;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
@ -49,13 +49,11 @@ public class CircularLinkedList {
|
|||
if (currentNode.value == valueToDelete) {
|
||||
head = head.nextNode;
|
||||
tail.nextNode = head;
|
||||
currentNode = null;
|
||||
} else {
|
||||
do {
|
||||
Node nextNode = currentNode.nextNode;
|
||||
if (nextNode.value == valueToDelete) {
|
||||
currentNode.nextNode = nextNode.nextNode;
|
||||
nextNode = null;
|
||||
break;
|
||||
}
|
||||
currentNode = currentNode.nextNode;
|
|
@ -1,10 +1,12 @@
|
|||
package com.baeldung.list;
|
||||
package com.baeldung.circularlinkedlist;
|
||||
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.baeldung.circularlinkedlist.CircularLinkedList;
|
||||
|
||||
public class CircularLinkedListUnitTest {
|
||||
|
||||
@Test
|
Loading…
Reference in New Issue