remove comment

This commit is contained in:
Chris Masone
2015-12-15 17:37:25 -08:00
parent 0d54e01dda
commit 8171014b20

View File

@@ -68,7 +68,6 @@ func (cs compoundSet) Subtract(others ...Set) Set {
func (cs compoundSet) Filter(cb setFilterCallback) Set {
seq := newEmptySequenceChunker(makeSetLeafChunkFn(cs.t, cs.cs), newSetMetaSequenceChunkFn(cs.t, cs.cs), newSetLeafBoundaryChecker(), newOrderedMetaSequenceBoundaryChecker)
// Could conceivably use IterAllP() here.
cs.IterAll(func(v Value) {
if cb(v) {
seq.Append(v)