Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszsamson committed Jan 21, 2024
1 parent 56fb766 commit 46196fb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions apps/language_server/lib/language_server/build.ex
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defmodule ElixirLS.LanguageServer.Build do
end

def build(parent, root_path, opts) when is_binary(root_path) do
Application.loaded_applications() |> Enum.map(&elem(&1, 0)) |> dbg
Application.loaded_applications() |> Enum.map(&elem(&1, 0))

build_pid_reference =
spawn_monitor(fn ->
Expand Down Expand Up @@ -528,8 +528,6 @@ defmodule ElixirLS.LanguageServer.Build do
defp maybe_purge_dep(%Mix.Dep{status: status, deps: deps} = dep) do
for dep <- deps, do: maybe_purge_dep(dep)

dbg({dep.app, status})

purge? =
case status do
{:nomatchvsn, _} -> true
Expand Down

0 comments on commit 46196fb

Please sign in to comment.