-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SNOW-2004510: Fix build warnings #1124
Conversation
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1124 +/- ##
==========================================
+ Coverage 86.25% 86.36% +0.11%
==========================================
Files 132 132
Lines 12679 12679
Branches 1302 1302
==========================================
+ Hits 10936 10950 +14
+ Misses 1417 1405 -12
+ Partials 326 324 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
@@ -109,7 +109,7 @@ public void TestReadMoreBytesThanBufferSize() | |||
try | |||
{ | |||
// An ArgumentException is thrown when 4 bytes is read from a buffer of size 3 | |||
_concatStream.Read(buffer, 0, 4); | |||
var readBytes = _concatStream.Read(buffer, 0, 4); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this unused?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is, however, if the return of the Read
is not assigned to the variable, the compiler complains about it.
Description
Fix build warnings
Checklist
dotnet test
)