移除无用变量

This commit is contained in:
CounterFire2023 2023-08-08 10:27:01 +08:00
parent e234f4cd7f
commit da7b3ce0fe

View File

@ -110,7 +110,7 @@
SKMutablePayment *payment = [SKMutablePayment paymentWithProduct:product];
// payment.applicationUsername = orderId;
// generate UUID for order id
NSString *testOrderId = [[NSUUID UUID] UUIDString];
// NSString *testOrderId = [[NSUUID UUID] UUIDString];
[payment performSelector: @selector(setApplicationUsername:) withObject: orderId];
[[SKPaymentQueue defaultQueue] addPayment:payment];
}