Skip to content

Commit 12ea371

Browse files
committed
Fix unused variable warning
1 parent f1b10fa commit 12ea371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/axon/loop.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ defmodule Axon.Loop do
964964

965965
@doc false
966966
@deprecated "handle/4 is deprecated, use handle_event/4 instead"
967-
def handle(%Loop{handlers: handle_fns} = loop, event, handler, filter \\ :always) do
967+
def handle(%Loop{} = loop, event, handler, filter \\ :always) do
968968
handle_event(loop, event, handler, filter)
969969
end
970970

0 commit comments

Comments
 (0)