From 995e110946071a7e039b59b8d9d670fcb1fa93a9 Mon Sep 17 00:00:00 2001 From: Dan Holmsand Date: Mon, 14 Sep 2015 13:34:17 +0200 Subject: [PATCH] Setting dirty on on-set is not necessary any more --- src/reagent/ratom.cljs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/reagent/ratom.cljs b/src/reagent/ratom.cljs index f402e2d..b4b6fd3 100644 --- a/src/reagent/ratom.cljs +++ b/src/reagent/ratom.cljs @@ -283,7 +283,6 @@ (let [oldval state] (set! state newval) (when (some? on-set) - (set! dirtyness dirty) (on-set oldval newval)) (-notify-watches a oldval newval) newval))