-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[swift] remove unused lenientTypeCast option (#19764)
* [swift6] remove unused lenientTypeCast option * [swift6] remove unused lenientTypeCast option * [swift5] remove unused lenientTypeCast option
- Loading branch information
Showing
8 changed files
with
0 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,6 @@ public class Swift5OptionsProvider implements OptionsProvider { | |
public static final String RESPONSE_AS_VALUE = "test"; | ||
public static final String NON_PUBLIC_API_REQUIRED_VALUE = "false"; | ||
public static final String OBJC_COMPATIBLE_VALUE = "false"; | ||
public static final String LENIENT_TYPE_CAST_VALUE = "false"; | ||
public static final String POD_SOURCE_VALUE = "{ :git => '[email protected]:swagger-api/swagger-mustache.git'," + | ||
" :tag => 'v1.0.0-SNAPSHOT' }"; | ||
public static final String POD_VERSION_VALUE = "v1.0.0-SNAPSHOT"; | ||
|
@@ -71,7 +70,6 @@ public Map<String, String> createOptions() { | |
.put(Swift5ClientCodegen.RESPONSE_AS, RESPONSE_AS_VALUE) | ||
.put(CodegenConstants.NON_PUBLIC_API, NON_PUBLIC_API_REQUIRED_VALUE) | ||
.put(Swift5ClientCodegen.OBJC_COMPATIBLE, OBJC_COMPATIBLE_VALUE) | ||
.put(Swift5ClientCodegen.LENIENT_TYPE_CAST, LENIENT_TYPE_CAST_VALUE) | ||
.put(Swift5ClientCodegen.POD_SOURCE, POD_SOURCE_VALUE) | ||
.put(CodegenConstants.POD_VERSION, POD_VERSION_VALUE) | ||
.put(Swift5ClientCodegen.POD_AUTHORS, POD_AUTHORS_VALUE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,6 @@ public class Swift6ClientCodegenOptionsProvider implements OptionsProvider { | |
public static final String RESPONSE_AS_VALUE = "test"; | ||
public static final String NON_PUBLIC_API_REQUIRED_VALUE = "false"; | ||
public static final String OBJC_COMPATIBLE_VALUE = "false"; | ||
public static final String LENIENT_TYPE_CAST_VALUE = "false"; | ||
public static final String POD_SOURCE_VALUE = "{ :git => '[email protected]:swagger-api/swagger-mustache.git'," + | ||
" :tag => 'v1.0.0-SNAPSHOT' }"; | ||
public static final String POD_VERSION_VALUE = "v1.0.0-SNAPSHOT"; | ||
|
@@ -74,7 +73,6 @@ public Map<String, String> createOptions() { | |
.put(Swift6ClientCodegen.RESPONSE_AS, RESPONSE_AS_VALUE) | ||
.put(CodegenConstants.NON_PUBLIC_API, NON_PUBLIC_API_REQUIRED_VALUE) | ||
.put(Swift6ClientCodegen.OBJC_COMPATIBLE, OBJC_COMPATIBLE_VALUE) | ||
.put(Swift6ClientCodegen.LENIENT_TYPE_CAST, LENIENT_TYPE_CAST_VALUE) | ||
.put(Swift6ClientCodegen.POD_SOURCE, POD_SOURCE_VALUE) | ||
.put(CodegenConstants.POD_VERSION, POD_VERSION_VALUE) | ||
.put(Swift6ClientCodegen.POD_AUTHORS, POD_AUTHORS_VALUE) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters