Skip to content

Commit

Permalink
Removes deprecation - not important to the fix/tests
Browse files Browse the repository at this point in the history
  • Loading branch information
calvincestari committed Jan 31, 2025
1 parent ac0dbad commit b0b9858
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Tests/ApolloTests/InputDictTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,6 @@ final class InputDictTests: XCTestCase {
__data = data
}

public init(
newField: String
) {
__data = InputDict([
"newField": newField
])
}

@available(*, deprecated, message: "Argument 'oldField' is deprecated.")
public init(
newField: String,
oldField: GraphQLNullable<String> = nil
Expand All @@ -35,7 +26,6 @@ final class InputDictTests: XCTestCase {
set { __data["newField"] = newValue }
}

@available(*, deprecated, message: "No longer valid.")
public var oldField: GraphQLNullable<String> {
get { __data["oldField"] }
set { __data["oldField"] = newValue }
Expand Down

0 comments on commit b0b9858

Please sign in to comment.