This is an automated email from the ASF dual-hosted git repository.
abstractdog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tez.git
The following commit(s) were added to refs/heads/master by this push:
new 2489b9118 TEZ-4656: Checkstyle to not complain about 'case' branches
are indented more than the 'switch' statement (#436) (Laszlo Bodor reviewed by
Ayush Saxena)
2489b9118 is described below
commit 2489b911889a1f931a67b6e56e7b4f06e3d17022
Author: Bodor Laszlo <[email protected]>
AuthorDate: Wed Oct 15 10:58:33 2025 +0200
TEZ-4656: Checkstyle to not complain about 'case' branches are indented
more than the 'switch' statement (#436) (Laszlo Bodor reviewed by Ayush Saxena)
---
tez-build-tools/src/main/resources/checkstyle/checkstyle.xml | 2 +-
1 file changed, 1 insertion(+), 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 cac5814e7..2217ba6bf 100644
--- a/tez-build-tools/src/main/resources/checkstyle/checkstyle.xml
+++ b/tez-build-tools/src/main/resources/checkstyle/checkstyle.xml
@@ -191,7 +191,7 @@
<module name="ArrayTypeStyle"/>
<module name="Indentation">
<property name="basicOffset" value="2" />
- <property name="caseIndent" value="0" />
+ <property name="caseIndent" value="2" />
</module>
<!--<module name="TodoComment"/>-->
<module name="UpperEll"/>