Skip to content

Commit 346807e

Browse files
authored
Merge pull request #1337 from dotnet/dev/bartde/rx_nullable_step1
Enable nullable in a few files.
2 parents 615d91a + 994b3df commit 346807e

39 files changed

+6
-86
lines changed

Rx.NET/Source/src/System.Reactive/AnonymousObservable.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
using System.Reactive.Disposables;
86

97
namespace System.Reactive

Rx.NET/Source/src/System.Reactive/AnonymousObserver.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive
86
{
97
/// <summary>

Rx.NET/Source/src/System.Reactive/Concurrency/IScheduledItem.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive.Concurrency
86
{
97
/// <summary>

Rx.NET/Source/src/System.Reactive/Concurrency/IStopwatch.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive.Concurrency
86
{
97
/// <summary>

Rx.NET/Source/src/System.Reactive/Concurrency/IStopwatchProvider.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive.Concurrency
86
{
97
/*

Rx.NET/Source/src/System.Reactive/Concurrency/Thread.Stub.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
#if NO_THREAD
86
using System.Threading.Tasks;
97

Rx.NET/Source/src/System.Reactive/Disposables/ICancelable.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive.Disposables
86
{
97
/// <summary>

Rx.NET/Source/src/System.Reactive/EnlightenmentProvider.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive.PlatformServices
86
{
97
/// <summary>

Rx.NET/Source/src/System.Reactive/ExcludeFromCodeCoverageAttribute.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
#if NO_CODE_COVERAGE_ATTRIBUTE
86

97
namespace System.Diagnostics.CodeAnalysis

Rx.NET/Source/src/System.Reactive/ExperimentalAttribute.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT License.
33
// See the LICENSE file in the project root for more information.
44

5-
#nullable disable
6-
75
namespace System.Reactive
86
{
97
/// <summary>
@@ -13,4 +11,4 @@ namespace System.Reactive
1311
public sealed class ExperimentalAttribute : Attribute
1412
{
1513
}
16-
}
14+
}

0 commit comments

Comments
 (0)