Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign uplib: fix stream as context is redundant #35728
Conversation
|
Review requested: |
Codecov Report
@@ Coverage Diff @@
## master #35728 +/- ##
=======================================
Coverage 96.40% 96.40%
=======================================
Files 222 223 +1
Lines 73682 73685 +3
=======================================
+ Hits 71033 71036 +3
Misses 2649 2649
Continue to review full report at Codecov.
|
| // being called before last iteration completion. | ||
| let reading = false; | ||
|
|
||
| // needToClose boolean if iterator needs to be explicitly closed | ||
| // Flag for iterator when needs to be explicitly closed |
lpinca
Oct 21, 2020
Member
| // Flag for iterator when needs to be explicitly closed | |
| // Flag for iterator when needs to be explicitly closed. |
|
The subsystem in commit title should be |
043cd17
to
daa264f
|
Updated @lpinca |
|
lgtm |
| // being called before last iteration completion. | ||
| let reading = false; | ||
|
|
||
| // needToClose boolean if iterator needs to be explicitly closed | ||
| // Flag for iterator when needs to be explicitly closed. |
Trott
Oct 21, 2020
Member
| // Flag for iterator when needs to be explicitly closed. | |
| // Flag for when iterator needs to be explicitly closed. |
|
The commit message ( |
Using the variable name in the comment and justifying the type seems redundant to me and instead it should defined the entity which it is acting, like in our case it is acting as a flag to control the flow in streams.
daa264f
to
2aa775a
Using the variable name in the comment and justifying the type seems
redundant to me and instead it should defined the entity which it is
acting, like in our case it is acting as a flag to control the flow in
streams.
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes