Skip to content

Commit

Permalink
Removes IgnoredOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
calvincestari committed Nov 16, 2022
1 parent 33ef2a5 commit f081434
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 27 deletions.
4 changes: 0 additions & 4 deletions Apollo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,6 @@
E6203346284F252A00A291D1 /* MockUnionsFileGeneratorTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6203345284F252A00A291D1 /* MockUnionsFileGeneratorTests.swift */; };
E6203348284F25DF00A291D1 /* MockUnionsTemplateTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6203347284F25DF00A291D1 /* MockUnionsTemplateTests.swift */; };
E623FD2A2797A6F4008B4CED /* InterfaceTemplate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E623FD292797A6F4008B4CED /* InterfaceTemplate.swift */; };
E639F20528F0A8FA00441FF4 /* IgnoredOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E639F20428F0A8FA00441FF4 /* IgnoredOptions.swift */; };
E63F0C0328EE0F2A009069EA /* ApolloCodegenFrontendBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = E63F0C0028EE099A009069EA /* ApolloCodegenFrontendBundle.swift */; };
E64F226D28B8B3FE0011292F /* LogLevelSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E64F226C28B8B3FE0011292F /* LogLevelSetter.swift */; };
E64F227128B8BEE10011292F /* MockLogLevelSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E64F227028B8BEE10011292F /* MockLogLevelSetter.swift */; };
Expand Down Expand Up @@ -1882,7 +1881,6 @@
E6203347284F25DF00A291D1 /* MockUnionsTemplateTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockUnionsTemplateTests.swift; sourceTree = "<group>"; };
E623FD292797A6F4008B4CED /* InterfaceTemplate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InterfaceTemplate.swift; sourceTree = "<group>"; };
E623FD2B2797A700008B4CED /* InterfaceTemplateTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InterfaceTemplateTests.swift; sourceTree = "<group>"; };
E639F20428F0A8FA00441FF4 /* IgnoredOptions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IgnoredOptions.swift; sourceTree = "<group>"; };
E63F0C0028EE099A009069EA /* ApolloCodegenFrontendBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApolloCodegenFrontendBundle.swift; sourceTree = "<group>"; };
E64F226C28B8B3FE0011292F /* LogLevelSetter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LogLevelSetter.swift; sourceTree = "<group>"; };
E64F227028B8BEE10011292F /* MockLogLevelSetter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockLogLevelSetter.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -3977,7 +3975,6 @@
isa = PBXGroup;
children = (
E687B3CC28B398E600A9551C /* InputOptions.swift */,
E639F20428F0A8FA00441FF4 /* IgnoredOptions.swift */,
);
path = OptionGroups;
sourceTree = "<group>";
Expand Down Expand Up @@ -5749,7 +5746,6 @@
E687B3E828B398E600A9551C /* SchemaDownloadProvider.swift in Sources */,
E64F226D28B8B3FE0011292F /* LogLevelSetter.swift in Sources */,
E687B3E428B398E600A9551C /* Initialize.swift in Sources */,
E639F20528F0A8FA00441FF4 /* IgnoredOptions.swift in Sources */,
E687B3E128B398E600A9551C /* String+Data.swift in Sources */,
E687B3DD28B398E600A9551C /* InputOptions.swift in Sources */,
E687B3E728B398E600A9551C /* CodegenProvider.swift in Sources */,
Expand Down
1 change: 0 additions & 1 deletion Sources/CodegenCLI/Commands/FetchSchema.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public struct FetchSchema: ParsableCommand {
)

@OptionGroup var inputs: InputOptions
@OptionGroup var ignored: IgnoredOptions

// MARK: - Implementation

Expand Down
1 change: 0 additions & 1 deletion Sources/CodegenCLI/Commands/Generate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public struct Generate: ParsableCommand {
)

@OptionGroup var inputs: InputOptions
@OptionGroup var ignored: IgnoredOptions

@Flag(
name: .shortAndLong,
Expand Down
2 changes: 0 additions & 2 deletions Sources/CodegenCLI/Commands/Initialize.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ public struct Initialize: ParsableCommand {
abstract: "Initialize a new configuration with defaults."
)

@OptionGroup var ignored: IgnoredOptions

@Option(
name: [.long, .customShort("n")],
help: "Name used to scope the generated schema type files."
Expand Down
19 changes: 0 additions & 19 deletions Sources/CodegenCLI/OptionGroups/IgnoredOptions.swift

This file was deleted.

0 comments on commit f081434

Please sign in to comment.