Skip to content

Commit

Permalink
fix warning SA16XX
Browse files Browse the repository at this point in the history
  • Loading branch information
smdn committed Apr 3, 2024
1 parent 7c520ad commit 71e2e65
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ SPDX-License-Identifier: MIT

<!-- disables code style/code analysis warnings configured by Smdn.MSBuild.ProjectAssets.Library -->
<PropertyGroup>
<NoWarn>SA1616;SA1623;SA1629;SA1642;SA1649;$(NoWarn)</NoWarn>
<NoWarn>SA1623;SA1629;SA1642;$(NoWarn)</NoWarn>
</PropertyGroup>

<Target Name="GenerateReadmeFileContent">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ IReadOnlyList<EchonetClassGroupSpecification> specs
/// <summary>
/// インスタンス取得
/// </summary>
/// <returns></returns>
public static SpecificationMaster GetInstance()
{
if (instance is null) {
Expand Down
2 changes: 1 addition & 1 deletion src/Smdn.Net.EchonetLite/Smdn.Net.EchonetLite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ SPDX-License-Identifier: MIT

<!-- disables code style/code analysis warnings configured by Smdn.MSBuild.ProjectAssets.Library -->
<PropertyGroup>
<NoWarn>SA1614;SA1623;SA1629;SA1642;$(NoWarn)</NoWarn>
<NoWarn>SA1623;SA1629;SA1642;$(NoWarn)</NoWarn>
</PropertyGroup>

<Target Name="GenerateReadmeFileContent">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public EchonetObject(EOJ eoj)
/// プロパティは仕様から取得する
/// </summary>
/// <param name="classObject">オブジェクトクラス</param>
/// <param name="instanceCode"></param>
/// <param name="instanceCode">インスタンスコード</param>
public EchonetObject(EchonetObjectSpecification classObject, byte instanceCode)
{
Spec = classObject ?? throw new ArgumentNullException(nameof(classObject));
Expand Down

0 comments on commit 71e2e65

Please sign in to comment.