From 0fd8d0d02acc0007c1bc7fba64a2a8770d4a82c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Samson?= Date: Wed, 18 Jun 2025 09:37:17 +0200 Subject: [PATCH] Fix get_condition spec --- apps/debug_adapter/lib/debug_adapter/breakpoint_condition.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/debug_adapter/lib/debug_adapter/breakpoint_condition.ex b/apps/debug_adapter/lib/debug_adapter/breakpoint_condition.ex index 95c08629c..294b5d17e 100644 --- a/apps/debug_adapter/lib/debug_adapter/breakpoint_condition.ex +++ b/apps/debug_adapter/lib/debug_adapter/breakpoint_condition.ex @@ -41,7 +41,7 @@ defmodule ElixirLS.DebugAdapter.BreakpointCondition do end @spec get_condition(module, non_neg_integer) :: - {Macro.Env.t(), String.t(), String.t(), String.t(), non_neg_integer} + {Macro.Env.t(), String.t(), String.t() | nil, String.t(), non_neg_integer} def get_condition(name \\ __MODULE__, number) do GenServer.call(name, {:get_condition, number}) end