Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsamson committed Sep 21, 2022
1 parent 33d745d commit 85c1b40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/language_server/lib/language_server/tracer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ defmodule ElixirLS.LanguageServer.Tracer do
register_call(meta, env.module, name, arity, env)
end

def trace(trace, _env) do
IO.inspect(trace, label: "skipped")
def trace(_trace, _env) do
# IO.inspect(trace, label: "skipped")
:ok
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ defmodule ElixirLS.Test.ReferencesReferenced do
end
end

def uses_fun(a) do
referenced_fun
def uses_fun(_a) do
referenced_fun()
end

def uses_macro(a) do
Expand Down

0 comments on commit 85c1b40

Please sign in to comment.