From ae322dec31bb911fa4e1ac4fc8bbc0c84813b886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodri=CC=81guez=20Troitin=CC=83o?= Date: Wed, 11 Sep 2024 15:37:20 -0700 Subject: [PATCH] [SwiftLexicalLookup] Remove some import Foundation The `import Foundation` seems to not be needed in these two files. Remove them. --- Sources/SwiftLexicalLookup/Configurations/LookupConfig.swift | 2 -- Sources/SwiftLexicalLookup/SimpleLookupQueries.swift | 1 - 2 files changed, 3 deletions(-) diff --git a/Sources/SwiftLexicalLookup/Configurations/LookupConfig.swift b/Sources/SwiftLexicalLookup/Configurations/LookupConfig.swift index 973c9ea940d..ec81ef2d8b4 100644 --- a/Sources/SwiftLexicalLookup/Configurations/LookupConfig.swift +++ b/Sources/SwiftLexicalLookup/Configurations/LookupConfig.swift @@ -10,8 +10,6 @@ // //===----------------------------------------------------------------------===// -import Foundation - @_spi(Experimental) public struct LookupConfig { /// Specifies behavior of file scope. @_spi(Experimental) public var fileScopeHandling: FileScopeHandlingConfig diff --git a/Sources/SwiftLexicalLookup/SimpleLookupQueries.swift b/Sources/SwiftLexicalLookup/SimpleLookupQueries.swift index 461ad0fc6c2..35320ced036 100644 --- a/Sources/SwiftLexicalLookup/SimpleLookupQueries.swift +++ b/Sources/SwiftLexicalLookup/SimpleLookupQueries.swift @@ -10,7 +10,6 @@ // //===----------------------------------------------------------------------===// -import Foundation import SwiftSyntax extension SyntaxProtocol {