diff --git a/project.clj b/project.clj index 1ffc368..e9ddbc8 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject yogsototh/kibit "0.1.4" +(defproject yogsototh/kibit "0.1.5" :description "There's a function for that!" :url "https://github.com/yogsototh/kibit" :license {:name "Eclipse Public License - v 1.0" diff --git a/src/kibit/rules/collections.clj b/src/kibit/rules/collections.clj index 622c1b6..812caa3 100644 --- a/src/kibit/rules/collections.clj +++ b/src/kibit/rules/collections.clj @@ -14,8 +14,9 @@ [(update-in ?coll ?keys assoc ?val) (assoc-in ?coll ?keys ?val)] ;; empty? - [(not (empty? ?x)) (seq ?x)] - [(when-not (empty? ?x) . ?y) (when (seq ?x) . ?y)] + ;; THESE RULES ARE FALSE!!!!!!!!!! + ;; [(not (empty? ?x)) (seq ?x)] + ;; [(when-not (empty? ?x) . ?y) (when (seq ?x) . ?y)] ;; set [(into #{} ?coll) (set ?coll)]