Skip to content

Commit 185b148

Browse files
committed
format
1 parent 0a3ba8f commit 185b148

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/debug_adapter/lib/debug_adapter/protocol.basic.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ defmodule ElixirLS.DebugAdapter.Protocol.Basic do
5959
show_user
6060
) do
6161
message_value = Macro.expand_once(message, __CALLER__)
62+
6263
error_id =
6364
case message_value do
6465
value when is_binary(value) -> ElixirLS.DebugAdapter.ErrorDictionary.code(value)

apps/language_server/lib/language_server.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ defmodule ElixirLS.LanguageServer do
142142
def check_elixir_sources() do
143143
enum_ex_path = Enum.module_info()[:compile][:source]
144144

145+
# handle possible nil from deterministic build of elixir
145146
elixir_sources_available =
146-
# handle possible nil from deterministic build of elixir
147147
unless enum_ex_path && File.exists?(enum_ex_path, [:raw]) do
148148
dir = (enum_ex_path || ~c"/") |> Path.join("../../../..") |> Path.expand()
149149

0 commit comments

Comments
 (0)