-
Notifications
You must be signed in to change notification settings - Fork 166
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
(#1035) org.cactoos.io.Joined: add a Ctor of Iterable<Input> #1038
Conversation
Job #1038 is now in scope, role is |
Codecov Report
@@ Coverage Diff @@
## master #1038 +/- ##
============================================
+ Coverage 87.46% 87.47% +<.01%
- Complexity 1514 1515 +1
============================================
Files 266 266
Lines 3885 3887 +2
Branches 212 212
============================================
+ Hits 3398 3400 +2
Misses 438 438
Partials 49 49
Continue to review full report at Codecov.
|
This pull request #1038 is assigned to @fabriciofx/z, here is why; the budget is 15 minutes, see §4; please, read §27 and when you decide to accept the changes, inform @llorllale/z (the architect) right in this ticket; if you decide that this PR should not be accepted ever, also inform the architect; this blog post will help you understand what is expected from a code reviewer; there will be no monetary reward for this job |
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.
@ilyakharlamov Done. Please, check out.
public Joined(final Iterable<Input> inputs) { | ||
this.inputs = inputs; | ||
} | ||
|
||
/** | ||
* Ctor. | ||
* @param first First input | ||
* @param rest The rest | ||
*/ | ||
public Joined(final Input first, final Input... rest) { |
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.
@ilyakharlamov Same above.
this( | ||
new org.cactoos.iterable.Joined<>( | ||
first, | ||
new IterableOf<>(rest) |
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.
@ilyakharlamov Same above.
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.
@ilyakharlamov Done. Please, check it again.
…(Input of bytes test)
…(Ctor arg rename)
@ilyakharlamov This PR seems fine to me. Congratulations! It was a great job! |
@rultor merge |
@fabriciofx Thanks for your request. @llorllale Please confirm this. |
@ilyakharlamov left you some comments |
@ilyakharlamov This PR seems fine to me. Great job! |
@rultor merge |
@fabriciofx Thanks for your request. @llorllale Please confirm this. |
@rultor merge |
@llorllale OK, I'll try to merge now. You can check the progress of the merge here |
@ilyakharlamov @llorllale Oops, I failed. You can see the full log here (spent 12min)
|
not sure why it's failed, I see no merge conflicts |
…tos-joined-ctor
@llorllale Can you try merge it again? |
@rultor merge |
@llorllale OK, I'll try to merge now. You can check the progress of the merge here |
@llorllale Done! FYI, the full log is here (took me 13min) |
The job #1038 is now out of scope |
Order was finished: +15 point(s) just awarded to @fabriciofx/z |
Job |
Payment to |
This PR:
Regarding #1035
creates a constructor and adds a unit test for that