Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/4112#discussion_r121480837
--- Diff:
flink-core/src/main/java/org/apache/flink/util/StringValueUtils.java ---
@@ -114,15 +114,17 @@ public boolean next(StringValue target) {
int pos = this.pos;
// skip the delimiter
- for (; pos < limit &&
Character.isWhitespace(data[pos]); pos++);
+ for (; pos < limit &&
Character.isWhitespace(data[pos]); pos++) {
--- End diff --
The `NeedBraces` module was extended with the strict-checkstyle to also
apply to `do`, `while` and `for`.
Since i can't selectively disable parts of the module I had to make the
changes instead.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---