Skip to content

Commit 0ea2eb8

Browse files
authored
Merge pull request #67 from IdeasOnCanvas/enhancement/redundantResultIgnore
Prepare for new Xcode version
2 parents 98f4ccb + f8d69b3 commit 0ea2eb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

AppReceiptValidator/AppReceiptValidator/AppReceiptValidator.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,13 @@ private extension AppReceiptValidator {
117117
var sha1Context = SHA_CTX()
118118

119119
SHA1_Init(&sha1Context)
120-
_ = deviceIdentifierData.withUnsafeBytes { pointer -> Void in
120+
deviceIdentifierData.withUnsafeBytes { pointer -> Void in
121121
SHA1_Update(&sha1Context, pointer.baseAddress, deviceIdentifierData.count)
122122
}
123-
_ = receiptOpaqueValueData.withUnsafeBytes { pointer -> Void in
123+
receiptOpaqueValueData.withUnsafeBytes { pointer -> Void in
124124
SHA1_Update(&sha1Context, pointer.baseAddress, receiptOpaqueValueData.count)
125125
}
126-
_ = receiptBundleIdData.withUnsafeBytes { pointer -> Void in
126+
receiptBundleIdData.withUnsafeBytes { pointer -> Void in
127127
SHA1_Update(&sha1Context, pointer.baseAddress, receiptBundleIdData.count)
128128
}
129129
SHA1_Final(&computedHash, &sha1Context)

0 commit comments

Comments
 (0)