Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
fix string formatting, courtesy @tomspilman
Browse files Browse the repository at this point in the history
  • Loading branch information
conceptdev committed Mar 29, 2017
1 parent 8349ffd commit 691efb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions StoreKit/SharedCode/PurchaseManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void FailedTransaction (SKPaymentTransaction transaction)

public void CompleteTransaction (SKPaymentTransaction transaction)
{
Console.WriteLine ("CompleteTransaction {0}" + transaction.TransactionIdentifier);
Console.WriteLine ("CompleteTransaction {0}", transaction.TransactionIdentifier);
string productId = transaction.Payment.ProductIdentifier;

// Register the purchase, so it is remembered for next time
Expand Down Expand Up @@ -126,4 +126,4 @@ protected virtual void RestoreTransaction (string productId)

}
}
}
}

0 comments on commit 691efb0

Please sign in to comment.