Title: [207773] trunk/Source/WebCore
Revision
207773
Author
commit-qu...@webkit.org
Date
2016-10-24 13:25:02 -0700 (Mon, 24 Oct 2016)

Log Message

Remove unnecessary unused variable stubs
https://bugs.webkit.org/show_bug.cgi?id=163688

Patch by Joseph Pecoraro <pecor...@apple.com> on 2016-10-24
Reviewed by Simon Fraser.

* Modules/applepay/cocoa/PaymentCocoa.mm:
(WebCore::toDictionary):
* Modules/applepay/cocoa/PaymentContactCocoa.mm:
(WebCore::toDictionary):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207772 => 207773)


--- trunk/Source/WebCore/ChangeLog	2016-10-24 20:19:23 UTC (rev 207772)
+++ trunk/Source/WebCore/ChangeLog	2016-10-24 20:25:02 UTC (rev 207773)
@@ -1,3 +1,15 @@
+2016-10-24  Joseph Pecoraro  <pecor...@apple.com>
+
+        Remove unnecessary unused variable stubs
+        https://bugs.webkit.org/show_bug.cgi?id=163688
+
+        Reviewed by Simon Fraser.
+
+        * Modules/applepay/cocoa/PaymentCocoa.mm:
+        (WebCore::toDictionary):
+        * Modules/applepay/cocoa/PaymentContactCocoa.mm:
+        (WebCore::toDictionary):
+
 2016-10-24  Alex Christensen  <achristen...@webkit.org>
 
         Try to fix Windows build after r207767

Modified: trunk/Source/WebCore/Modules/applepay/cocoa/PaymentCocoa.mm (207772 => 207773)


--- trunk/Source/WebCore/Modules/applepay/cocoa/PaymentCocoa.mm	2016-10-24 20:19:23 UTC (rev 207772)
+++ trunk/Source/WebCore/Modules/applepay/cocoa/PaymentCocoa.mm	2016-10-24 20:25:02 UTC (rev 207773)
@@ -53,7 +53,6 @@
 static RetainPtr<NSDictionary> toDictionary(PKPayment *payment)
 {
     ASSERT(payment);
-    (void)payment;
 
     auto result = adoptNS([[NSMutableDictionary alloc] init]);
 

Modified: trunk/Source/WebCore/Modules/applepay/cocoa/PaymentContactCocoa.mm (207772 => 207773)


--- trunk/Source/WebCore/Modules/applepay/cocoa/PaymentContactCocoa.mm	2016-10-24 20:19:23 UTC (rev 207772)
+++ trunk/Source/WebCore/Modules/applepay/cocoa/PaymentContactCocoa.mm	2016-10-24 20:25:02 UTC (rev 207773)
@@ -126,7 +126,6 @@
 RetainPtr<NSDictionary> toDictionary(PKContact *contact)
 {
     ASSERT(contact);
-    (void)contact;
 
     auto result = adoptNS([[NSMutableDictionary alloc] init]);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to