-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[hotfix] Fix invalid comments in Committer #26578
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
base: master
Are you sure you want to change the base?
Conversation
@@ -38,7 +38,7 @@ | |||
@Public | |||
public interface Committer<CommT> extends AutoCloseable { | |||
/** | |||
* Commit the given list of {@link CommT}. | |||
* Commit the given list of {@link CommitRequest}. |
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.
CommT
is a generic parameter and we can't visit the link.
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.
nit: If you are changing this line, you could change List to Collection
and all the references of list to collection.
@@ -49,7 +49,7 @@ void commit(Collection<CommitRequest<CommT>> committables) | |||
/** | |||
* A request to commit a specific committable. | |||
* | |||
* @param <CommT> | |||
* @param <CommT> The type of information needed to commit the staged data |
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.
Add the missing comments.
ping @AHeise @fapaul @pvary cc @1996fanrui @davidradl |
What is the purpose of the change
This PR aims to fix invalid comments in
Committer
.Brief change log
Fix invalid comments in
Committer
.Verifying this change
This change is a trivial rework / code cleanup without any test coverage.
Does this pull request potentially affect one of the following parts:
@Public(Evolving)
: (no)Documentation