Skip to content

Commit

Permalink
Turn on null checker 4 Libplanet.Explorer project
Browse files Browse the repository at this point in the history
planetarium#458

[changelog skip]
  • Loading branch information
dahlia committed Jan 25, 2022
1 parent 2c82a0f commit 7afc161
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions Libplanet.Explorer/Controllers/ExplorerController.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Collections.Generic;
using System.Threading.Tasks;
using GraphQL.SystemTextJson;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Controllers/GraphQLBody.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using Newtonsoft.Json.Linq;

namespace Libplanet.Explorer.Controllers
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/ExplorerStartup.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using Libplanet.Action;
using Libplanet.Explorer.Controllers;
using Libplanet.Explorer.Interfaces;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/ActionType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/AddressType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using GraphQL.Language.AST;
using GraphQL.Types;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/BlockType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Security.Cryptography;
using GraphQL.Types;
using Libplanet.Action;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/ByteStringType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using GraphQL.Language.AST;
using GraphQL.Types;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/NodeStateType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using GraphQL.Types;
using Libplanet.Action;
using Libplanet.Explorer.Interfaces;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/PublicKeyType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using GraphQL.Language.AST;
using GraphQL.Types;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/GraphTypes/TransactionType.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Linq;
using GraphQL;
using GraphQL.Types;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Interfaces/IBlockChainContext.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System.Runtime.CompilerServices;
using GraphQL.Types;
using Libplanet.Action;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Libplanet.Explorer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<RootNamespace>Libplanet.Explorer</RootNamespace>
<AssemblyName>Libplanet.Explorer</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Nullable>enable</Nullable>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<IsTestProject>false</IsTestProject>
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Queries/BlockQuery.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using GraphQL;
using GraphQL.Types;
using Libplanet.Action;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Queries/ExplorerQuery.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Queries/TransactionQuery.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using GraphQL;
using GraphQL.Types;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Store/AddressRefDoc.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using Libplanet.Tx;
using LiteDB;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Store/IRichStore.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections.Generic;
using Libplanet.Blocks;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Store/LiteDBRichStore.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Store/MySQLRichStore.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
Expand Down
1 change: 1 addition & 0 deletions Libplanet.Explorer/Store/MySQLRichStoreOptions.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#nullable disable
namespace Libplanet.Explorer.Store
{
public readonly struct MySQLRichStoreOptions
Expand Down

0 comments on commit 7afc161

Please sign in to comment.