Title: [264881] trunk/Source/WebCore
Revision
264881
Author
beid...@apple.com
Date
2020-07-24 20:21:38 -0700 (Fri, 24 Jul 2020)

Log Message

Build fix after r264874

Remove all nullability specifiers because just having one goes viral.

* platform/gamepad/cocoa/GameControllerSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (264880 => 264881)


--- trunk/Source/WebCore/ChangeLog	2020-07-25 03:10:18 UTC (rev 264880)
+++ trunk/Source/WebCore/ChangeLog	2020-07-25 03:21:38 UTC (rev 264881)
@@ -1,3 +1,11 @@
+2020-07-24  Brady Eidson  <beid...@apple.com>
+
+        Build fix after r264874
+
+        Remove all nullability specifiers because just having one goes viral.
+
+        * platform/gamepad/cocoa/GameControllerSPI.h:
+
 2020-07-24  Alex Christensen  <achristen...@webkit.org>
 
         Null check frame in Document::dispatchDisabledAdaptationsDidChangeForMainFrame and a few other places

Modified: trunk/Source/WebCore/platform/gamepad/cocoa/GameControllerSPI.h (264880 => 264881)


--- trunk/Source/WebCore/platform/gamepad/cocoa/GameControllerSPI.h	2020-07-25 03:10:18 UTC (rev 264880)
+++ trunk/Source/WebCore/platform/gamepad/cocoa/GameControllerSPI.h	2020-07-25 03:21:38 UTC (rev 264881)
@@ -34,7 +34,7 @@
 @interface GCController ()
 + (void)__openXPC_and_CBApplicationDidBecomeActive__;
 #if !HAVE(GCCONTROLLER_HID_DEVICE_CHECK)
-@property (nonatomic, retain, readonly, nonnull) NSArray<_GCCControllerHIDServiceInfo *> *hidServices;
+@property (nonatomic, retain, readonly) NSArray<_GCCControllerHIDServiceInfo *> *hidServices;
 #endif
 @end
 
@@ -56,7 +56,7 @@
 
 #if !HAVE(GCCONTROLLER_HID_DEVICE_CHECK)
 @interface _GCCControllerHIDServiceInfo : NSObject
-@property (nonatomic, readonly, nullable) IOHIDServiceClientRef service;
+@property (nonatomic, readonly) IOHIDServiceClientRef service;
 @end
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to