-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ignore warning pragmas to example and unit test wrapper list files.
- Loading branch information
1 parent
0d6d929
commit 2eafdea
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
using Amazon.DynamoDBv2.DataModel; | ||
|
||
#pragma warning disable IDE0044 // Add readonly modifier | ||
#pragma warning disable IDE0051 // Remove unused private members | ||
|
||
public struct WrapperList | ||
{ | ||
IDynamoDBContext dynamoDBContext; | ||
} | ||
|
||
#pragma warning restore IDE0051 // Remove unused private members | ||
#pragma warning restore IDE0044 // Add readonly modifier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
using Amazon.DynamoDBv2.DataModel; | ||
|
||
#pragma warning disable IDE0044 // Add readonly modifier | ||
#pragma warning disable IDE0051 // Remove unused private members | ||
|
||
public struct WrapperList | ||
{ | ||
IDynamoDBContext dynamoDBContext; | ||
Check warning on line 8 in SampleLibrary/WrapperList.cs GitHub Actions / Unit tests (8.0.x)
|
||
} | ||
|
||
#pragma warning restore IDE0051 // Remove unused private members | ||
#pragma warning restore IDE0044 // Add readonly modifier |