Skip to content

Commit 3e91b48

Browse files
committed
BAEL-3454: Moved AVLTree to data-structures module
1 parent 1e5362e commit 3e91b48

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

algorithms-miscellaneous-5/src/main/java/com/baeldung/algorithms/balancedbinarytree/AVLTree.java renamed to data-structures/src/main/java/com/baeldung/avltree/AVLTree.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.baeldung.algorithms.balancedbinarytree;
1+
package com.baeldung.avltree;
22

33
public class AVLTree {
44

algorithms-miscellaneous-5/src/test/java/com/baeldung/algorithms/balancedbinarytree/AVLTreeUnitTest.java renamed to data-structures/src/test/java/com/baeldung/avltree/AVLTreeUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.baeldung.algorithms.balancedbinarytree;
1+
package com.baeldung.avltree;
22

33
import org.junit.Assert;
44
import org.junit.Test;

0 commit comments

Comments
 (0)