Skip to content

Commit b14e3a6

Browse files
committed
Fix Swift 5.2 builds
1 parent 052dbcd commit b14e3a6

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

Sources/ParseSwift/Objects/ParseInstallation.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -623,13 +623,13 @@ extension ParseInstallation {
623623
let command: API.Command<Self, Self>!
624624
switch method {
625625
case .save:
626-
command = try saveCommand(isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
626+
command = try self.saveCommand(isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
627627
case .create:
628-
command = createCommand()
628+
command = self.createCommand()
629629
case .replace:
630-
command = try replaceCommand()
630+
command = try self.replaceCommand()
631631
case .update:
632-
command = try updateCommand()
632+
command = try self.updateCommand()
633633
}
634634
command
635635
.executeAsync(options: options,

Sources/ParseSwift/Objects/ParseObject.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -915,13 +915,13 @@ extension ParseObject {
915915
let command: API.Command<Self, Self>!
916916
switch method {
917917
case .save:
918-
command = try saveCommand(isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
918+
command = try self.saveCommand(isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
919919
case .create:
920-
command = createCommand()
920+
command = self.createCommand()
921921
case .replace:
922-
command = try replaceCommand()
922+
command = try self.replaceCommand()
923923
case .update:
924-
command = try updateCommand()
924+
command = try self.updateCommand()
925925
}
926926
command
927927
.executeAsync(options: options,

Sources/ParseSwift/Objects/ParseUser.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,13 +1007,13 @@ extension ParseUser {
10071007
let command: API.Command<Self, Self>!
10081008
switch method {
10091009
case .save:
1010-
command = try saveCommand(isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
1010+
command = try self.saveCommand(isIgnoreCustomObjectIdConfig: isIgnoreCustomObjectIdConfig)
10111011
case .create:
1012-
command = createCommand()
1012+
command = self.createCommand()
10131013
case .replace:
1014-
command = try replaceCommand()
1014+
command = try self.replaceCommand()
10151015
case .update:
1016-
command = try updateCommand()
1016+
command = try self.updateCommand()
10171017
}
10181018
command
10191019
.executeAsync(options: options,

0 commit comments

Comments
 (0)