-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
Enforce 140 char line lengths for packages action.bulk/delete/explain/get/index #34885
Conversation
Pinging @elastic/es-core-infra |
tests now included. should be ready for review. |
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.
LGTM assuming CI is happy :)
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.
Left one thing, otherwise LGTM.
@@ -46,7 +46,8 @@ | |||
* @see org.elasticsearch.client.Client#delete(DeleteRequest) | |||
* @see org.elasticsearch.client.Requests#deleteRequest(String) | |||
*/ | |||
public class DeleteRequest extends ReplicatedWriteRequest<DeleteRequest> implements DocWriteRequest<DeleteRequest>, CompositeIndicesRequest { | |||
public class DeleteRequest extends ReplicatedWriteRequest<DeleteRequest> implements DocWriteRequest<DeleteRequest>, | |||
CompositeIndicesRequest { |
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.
Could you add the new line before implements
instead of here? Could you also indent this one more time so it doesn't line up with the class body?
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.
thanks @nik9000, looks much better as suggested. (fixed)
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.
❤️
6.x backport: 679b0e1 |
part of #34884
No changes beyond adding newlines to satisfy the 140 char line length.