Skip to content

Commit 3b9a0a4

Browse files
author
phishman3579
committed
Major updates to all classes to add Java Collection compatibility, also unified under Interfaces to make testing cleaner
git-svn-id: https://java-algorithms-implementation.googlecode.com/svn/trunk@404 032fbc0f-8cab-eb90-e552-f08422b9a96a
1 parent f23945f commit 3b9a0a4

File tree

1 file changed

+2
-3
lines changed
  • src/com/jwetherell/algorithms/data_structures

1 file changed

+2
-3
lines changed

src/com/jwetherell/algorithms/data_structures/BTree.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,10 +451,9 @@ public int size() {
451451
}
452452

453453
/**
454-
* Validate the tree for all B-Tree invariants.
455-
*
456-
* @return True if tree is valid.
454+
* {@inheritDoc}
457455
*/
456+
@Override
458457
public boolean validate() {
459458
if (root == null) return true;
460459
return validateNode(root);

0 commit comments

Comments
 (0)