diff --git a/Package.resolved b/Package.resolved index ebadf1983..a06821f1d 100644 --- a/Package.resolved +++ b/Package.resolved @@ -9,15 +9,6 @@ "version" : "0.1.20" } }, - { - "identity" : "codeeditsymbols", - "kind" : "remoteSourceControl", - "location" : "https://github.com/CodeEditApp/CodeEditSymbols.git", - "state" : { - "revision" : "ae69712b08571c4469c2ed5cd38ad9f19439793e", - "version" : "0.2.3" - } - }, { "identity" : "codeedittextview", "kind" : "remoteSourceControl", diff --git a/Package.swift b/Package.swift index da9e3832c..b9cdd576e 100644 --- a/Package.swift +++ b/Package.swift @@ -24,11 +24,6 @@ let package = Package( url: "https://github.com/CodeEditApp/CodeEditLanguages.git", exact: "0.1.20" ), - // CodeEditSymbols - .package( - url: "https://github.com/CodeEditApp/CodeEditSymbols.git", - exact: "0.2.3" - ), // SwiftLint .package( url: "https://github.com/lukepistrol/SwiftLintPlugin", @@ -49,7 +44,6 @@ let package = Package( "CodeEditTextView", "CodeEditLanguages", "TextFormation", - "CodeEditSymbols" ], plugins: [ .plugin(name: "SwiftLint", package: "SwiftLintPlugin") diff --git a/Sources/CodeEditSourceEditor/Find/PanelView/FindPanelView.swift b/Sources/CodeEditSourceEditor/Find/PanelView/FindPanelView.swift index 8d859b183..e74e18df2 100644 --- a/Sources/CodeEditSourceEditor/Find/PanelView/FindPanelView.swift +++ b/Sources/CodeEditSourceEditor/Find/PanelView/FindPanelView.swift @@ -7,7 +7,6 @@ import SwiftUI import AppKit -import CodeEditSymbols import CodeEditTextView /// A SwiftUI view that provides a find and replace interface for the text editor.