Skip to content

Commit

Permalink
Merge pull request #47 from kilianmh/fix/unused-variable
Browse files Browse the repository at this point in the history
Fix: remove unused &rest parameter
  • Loading branch information
fukamachi committed Apr 30, 2024
2 parents d988067 + 8e5cb03 commit ae0c79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion route.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(controller :initarg :controller
:accessor route-controller)))

(defmethod initialize-instance :after ((route ningle-route) &rest initargs &key requirements-map requirements &allow-other-keys)
(defmethod initialize-instance :after ((route ningle-route) &key requirements-map requirements &allow-other-keys)
(when requirements-map
(setf (route-compiled-requirements route)
(compile-requirements requirements-map requirements))))
Expand Down

0 comments on commit ae0c79b

Please sign in to comment.