Skip to content

Commit d3215c0

Browse files
committed
Remove iterator
1 parent 0dfa288 commit d3215c0

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/data-structures/red-black-tree.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -130,17 +130,6 @@
130130
}
131131
};
132132

133-
RBTree.prototype.getIterator = function () {
134-
return new RBTIterator(this);
135-
};
136-
137-
function RBTIterator(tree) {
138-
this._tree = tree;
139-
}
140-
141-
RBTIterator.prototype.next = function () {
142-
};
143-
144133
global.RBTree = RBTree;
145134

146135

0 commit comments

Comments
 (0)