remove dead code from old collector code

This commit is contained in:
Nathan Marz 2015-09-10 23:10:34 -04:00
parent fc6392cc9e
commit ae679b6cc1

View file

@ -619,13 +619,6 @@
(transform* [^CodeWalkerStructurePath this structure next-fn]
(codewalk-until (.-afn this) next-fn structure)))
(deftype SelectCollector [sel-fn selector])
(extend-protocol p/Collector
SelectCollector
(collect-val [^SelectCollector this structure]
((.-sel-fn this) (.-selector this) structure)))
(defn srange-select [structure start end next-fn]
(next-fn (-> structure vec (subvec start end))))