-
Notifications
You must be signed in to change notification settings - Fork 25.2k
LLREST: Wrap at 140 columns #34489
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
LLREST: Wrap at 140 columns #34489
Conversation
Wraps a single line in a test to fit on 140 characters, removing the only checkstyle suppression for the clients directory.
Pinging @elastic/es-core-infra |
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 left a question.
@@ -106,7 +106,8 @@ public void testCanConfigureHeapBufferLimitFromOutsidePackage() throws ClassNotF | |||
IllegalAccessException, InvocationTargetException, InstantiationException { | |||
int bufferLimit = randomIntBetween(1, Integer.MAX_VALUE); | |||
//we use reflection to make sure that the class can be instantiated from the outside, and the constructor is public | |||
Constructor<?> constructor = HttpAsyncResponseConsumerFactory.HeapBufferedResponseConsumerFactory.class.getConstructor(Integer.TYPE); | |||
Constructor<?> constructor = HttpAsyncResponseConsumerFactory.HeapBufferedResponseConsumerFactory.class | |||
.getConstructor(Integer.TYPE); |
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.
Does it fit if you wrap after the equals?
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.
Sure! I'll switch it.
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.
@elasticmachine, retest this please |
Wraps a single line in a test to fit on 140 characters, removing the only checkstyle suppression for the clients directory.
Thanks for reviewing @jasontedor! |
Wraps a single line in a test to fit on 140 characters, removing the only checkstyle suppression for the clients directory.
Wraps a single line in a test to fit on 140 characters, removing the
only checkstyle suppression for the clients directory.