From 4c5d60afc15a77b1e1dcfbf216819a21c2dbeabc Mon Sep 17 00:00:00 2001 From: Andy Waite <13400+andyw8@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:13:31 -0400 Subject: [PATCH] Remove changes --- lib/ruby_lsp/addon.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ruby_lsp/addon.rb b/lib/ruby_lsp/addon.rb index f262f4c47..5038b2d45 100644 --- a/lib/ruby_lsp/addon.rb +++ b/lib/ruby_lsp/addon.rb @@ -1,8 +1,6 @@ # typed: strict # frozen_string_literal: true -require "ruby_lsp/global_state" - module RubyLsp # To register an addon, inherit from this class and implement both `name` and `activate` # @@ -93,7 +91,6 @@ def get(addon_name) sig { void } def initialize @errors = T.let([], T::Array[StandardError]) - @global_state = T.let(nil, T.nilable(GlobalState)) end sig { params(error: StandardError).returns(T.self_type) }