Skip to content

Commit 9327579

Browse files
committed
Fix approvals.
1 parent 3ad1aed commit 9327579

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rx.NET/Source/tests/Tests.System.Reactive.ApiApprovals/Api/ApiApprovalTests.Core.verified.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2373,8 +2373,8 @@ public static bool EnsureLoaded() { }
23732373
}
23742374
public static class HostLifecycleService
23752375
{
2376-
public static event System.EventHandler<System.Reactive.PlatformServices.HostResumingEventArgs> Resuming;
2377-
public static event System.EventHandler<System.Reactive.PlatformServices.HostSuspendingEventArgs> Suspending;
2376+
public static event System.EventHandler<System.Reactive.PlatformServices.HostResumingEventArgs>? Resuming;
2377+
public static event System.EventHandler<System.Reactive.PlatformServices.HostSuspendingEventArgs>? Suspending;
23782378
public static void AddRef() { }
23792379
public static void Release() { }
23802380
}
@@ -2401,7 +2401,7 @@ public interface INotifySystemClockChanged
24012401
}
24022402
public interface IPlatformEnlightenmentProvider
24032403
{
2404-
T GetService<T>(params object[] args)
2404+
T? GetService<T>(params object[] args)
24052405
where T : class;
24062406
}
24072407
public interface ISystemClock

0 commit comments

Comments
 (0)