Skip to content
Snippets Groups Projects
Commit 8e2eb323 authored by Adam Blank's avatar Adam Blank
Browse files

Merge branch 'bstPublic' into 'master'

Makes BSTNode public so the tests can access it



See merge request !1
parents 24655f31 8a5a765b
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ public class BinarySearchTree<K extends Comparable<K>, V>
* type E and an integer count. The class is protected so that subclasses of
* BinarySearchTree can access it.
*/
protected class BSTNode extends Item<K, V> {
public class BSTNode extends Item<K, V> {
public BSTNode[] children; // The children of this node.
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment