Skip to content

Commit e2c6854

Browse files
committed
remove bogus serverSideFiltering parameter
1 parent 4a2eefc commit e2c6854

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Sources/LanguageServerProtocol/SupportTypes/SKCompletionOptions.swift

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,10 @@
1515
/// **(LSP Extension)**: This is used as part of an extension to the
1616
/// code-completion request.
1717
public struct SKCompletionOptions: Codable, Hashable {
18-
/// Whether to use server-side filtering or to return all results and let the
19-
/// client handle all filtering.
20-
public var serverSideFiltering: Bool
21-
2218
/// The maximum number of completion results to return, or `nil` for unlimited.
2319
public var maxResults: Int?
2420

25-
public init(serverSideFiltering: Bool = true, maxResults: Int? = 200) {
26-
self.serverSideFiltering = serverSideFiltering
21+
public init(maxResults: Int? = 200) {
2722
self.maxResults = maxResults
2823
}
2924
}

0 commit comments

Comments
 (0)