This is an automated email from the ASF dual-hosted git repository.
jeagles pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/tez.git
The following commit(s) were added to refs/heads/branch-0.9 by this push:
new 99d7aa5 Checkstyle: '{' is followed by whitespace
99d7aa5 is described below
commit 99d7aa5231cce94827b657000d0369d8ca65734f
Author: László Bodor <[email protected]>
AuthorDate: Fri Apr 17 08:42:45 2020 -0500
Checkstyle: '{' is followed by whitespace
Signed-off-by: Jonathan Eagles <[email protected]>
(cherry picked from commit c383ff5e7ceca9a1794072c35f0d602d0157ab5f)
---
tez-build-tools/src/main/resources/checkstyle/checkstyle.xml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tez-build-tools/src/main/resources/checkstyle/checkstyle.xml
b/tez-build-tools/src/main/resources/checkstyle/checkstyle.xml
index ef661c7..fd002de 100644
--- a/tez-build-tools/src/main/resources/checkstyle/checkstyle.xml
+++ b/tez-build-tools/src/main/resources/checkstyle/checkstyle.xml
@@ -135,7 +135,9 @@
<!-- See http://checkstyle.sf.net/config_whitespace.html -->
<module name="EmptyForIteratorPad"/>
<module name="MethodParamPad"/>
- <module name="NoWhitespaceAfter"/>
+ <module name="NoWhitespaceAfter">
+ <property name="tokens" value="AT, INC, DEC, UNARY_MINUS,
UNARY_PLUS, BNOT, LNOT, DOT, INDEX_OP"/>
+ </module>
<module name="NoWhitespaceBefore"/>
<module name="ParenPad"/>
<module name="TypecastParenPad"/>