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
8253812: Cleanup AbstractMemberWriter #405
8253812: Cleanup AbstractMemberWriter #405
Conversation
|
boolean printedUseTableHeader = false; | ||
if (members.size() > 0) { |
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.
The enclosing if
statement is unnecessary.
@Override | ||
public void addMemberSummary(TypeElement tElement, Element member, | ||
List<? extends DocTree> firstSentenceTags) { | ||
List<? extends DocTree> firstSentenceTrees) { |
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.
This use of the word tags
is a hangover from an older version of javadoc
@jonathan-gibbons The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
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.
Looks good.
Mailing list message from Kumar Srinivasan on javadoc-dev: Hi Jon, I approved this in github, after I approved I noticed I had logged into github with my non-openjdk ID. Thanks
|
@jonathan-gibbons This change now passes all automated pre-integration checks. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 41 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details.
|
* | ||
* @param member the member to add the type for | ||
* @param code the content tree to which the modified will be added | ||
* @param code the content tree to which the modified will be added |
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.
I think this should be modifier not modified.
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.
Indeed; will fix
/integrate |
@jonathan-gibbons Since your change was applied there have been 41 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 06d8cf6. |
This is primarily a cosmetic cleanup for the doc comments on
AbstractMemberWriter
, but cleaning up some of the comments leaked into fixing up comments on overridden methods as well.Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/405/head:pull/405
$ git checkout pull/405