Skip to content

Commit

Permalink
Fix an unused variable warning in Reflex.Spider.Internal
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Trinkle committed Jul 15, 2015
1 parent 4c4ca91 commit 5cb4b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Reflex/Spider/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ run roots after = do
then do scheduleRootClear occRef
return $ Just r
else return Nothing
forM_ (catMaybes rootsToPropagate) $ \(RootTrigger (subscribersRef, _, k) :=> a) -> do
forM_ (catMaybes rootsToPropagate) $ \(RootTrigger (subscribersRef, _, _) :=> a) -> do
propagateAndUpdateSubscribersRef subscribersRef a
delayedRef <- EventM $ asks eventEnvDelayedMerges
let go = do
Expand Down

0 comments on commit 5cb4b9c

Please sign in to comment.