-
Notifications
You must be signed in to change notification settings - Fork 203
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
#160 let's get rid of List.add() - Part 3 #234
Conversation
@super132 Thanks for your pull request, let me find someone who can review it |
@darkled please review,thanks |
@@ -52,6 +52,10 @@ public RsWithHeaders(final Response res, final CharSequence... headers) { | |||
this(res, Arrays.asList(headers)); | |||
} | |||
|
|||
//@todo #160:DEV To implement the concatenation and |
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.
@super132 let's move this into the javadoc below
@super132 a minor comment above and there are some failed tests |
@darkled , I moved the codes into the javadoc. Please have a check. Thanks. |
@super132 could you please fix this PMD violation? otherwise it would be impossible to merge your changes. |
@darkled, the build is fixed by merging the latest commits from master. Please have a check. Thanks. |
@super132 thanks |
@rultor merge |
@rultor merge |
@yegor256 Oops, I failed. You can see the full log here (spent 9min)
|
@darkled , I saw pull requests can be merged now. Shall we try merging again? Thanks. |
@rultor merge |
@rultor merge |
@yegor256 Oops, I failed. You can see the full log here (spent 16min)
|
@@ -54,6 +54,12 @@ public RsWithHeaders(final Response res, final CharSequence... headers) { | |||
|
|||
/** | |||
* Ctor. | |||
* @todo #160:DEV To implement the concatenation and |
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.
@super132 please add an estimation here.
ERROR: "puzzle src/main/java/org/takes/rs/RsWithHeaders.java:55-60 has an estimate of 0 minutes, which is lower than 15 minutes"
@darkled , I have added the estimate here. Please have a check. Thanks. |
@rultor merge |
@rultor merge pls |
@elenavolokhova please, review this ticket for compliance with our QA rules |
@rultor deploy pls |
@darkled
There were mostly cosmetic issues found during review. Try to pay attention to bigger design problems and the overall quality of the code. |
@elenavolokhova I confirm, thank you |
@davvd Quality is acceptable here. |
@elenavolokhova thanks a lot, next time everybody should try to make it better |
@darkled 10 mins was added to the account of @elenavolokhova (for QA review), in transaction 57164971... 23 mins sent to your balance (ID |
For task #160, introducing Transform for eliminating the use of
List.add()
inRsWithHeaders
. This PR is split from #183