File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
Sources/ParseSwift/Objects Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -623,13 +623,13 @@ extension ParseInstallation {
623
623
let command : API . Command < Self , Self > !
624
624
switch method {
625
625
case . save:
626
- command = try saveCommand ( isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
626
+ command = try self . saveCommand ( isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
627
627
case . create:
628
- command = createCommand ( )
628
+ command = self . createCommand ( )
629
629
case . replace:
630
- command = try replaceCommand ( )
630
+ command = try self . replaceCommand ( )
631
631
case . update:
632
- command = try updateCommand ( )
632
+ command = try self . updateCommand ( )
633
633
}
634
634
command
635
635
. executeAsync ( options: options,
Original file line number Diff line number Diff line change @@ -915,13 +915,13 @@ extension ParseObject {
915
915
let command : API . Command < Self , Self > !
916
916
switch method {
917
917
case . save:
918
- command = try saveCommand ( isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
918
+ command = try self . saveCommand ( isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
919
919
case . create:
920
- command = createCommand ( )
920
+ command = self . createCommand ( )
921
921
case . replace:
922
- command = try replaceCommand ( )
922
+ command = try self . replaceCommand ( )
923
923
case . update:
924
- command = try updateCommand ( )
924
+ command = try self . updateCommand ( )
925
925
}
926
926
command
927
927
. executeAsync ( options: options,
Original file line number Diff line number Diff line change @@ -1007,13 +1007,13 @@ extension ParseUser {
1007
1007
let command : API . Command < Self , Self > !
1008
1008
switch method {
1009
1009
case . save:
1010
- command = try saveCommand ( isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
1010
+ command = try self . saveCommand ( isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
1011
1011
case . create:
1012
- command = createCommand ( )
1012
+ command = self . createCommand ( )
1013
1013
case . replace:
1014
- command = try replaceCommand ( )
1014
+ command = try self . replaceCommand ( )
1015
1015
case . update:
1016
- command = try updateCommand ( )
1016
+ command = try self . updateCommand ( )
1017
1017
}
1018
1018
command
1019
1019
. executeAsync ( options: options,
You can’t perform that action at this time.
0 commit comments