Fixed the review comments

This commit is contained in:
Radhe Sravan 2019-11-29 05:55:33 +05:30
parent c865567b71
commit 5ca67c9ac7
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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