This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new f1f3ee97cf1 NIFI-15893 Replaced deprecated separator in Checkstyle
CustomImportOrder configuration (#11192)
f1f3ee97cf1 is described below
commit f1f3ee97cf174d541c0ee0b686cd296672d5f49a
Author: dan-s1 <[email protected]>
AuthorDate: Sat May 2 11:52:58 2026 -0400
NIFI-15893 Replaced deprecated separator in Checkstyle CustomImportOrder
configuration (#11192)
Signed-off-by: David Handermann <[email protected]>
---
checkstyle.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/checkstyle.xml b/checkstyle.xml
index cd784213ed3..ee8f7845fdc 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -52,7 +52,7 @@
<property name="processJavadoc" value="true"/>
</module>
<module name="CustomImportOrder">
- <property name="customImportOrderRules"
value="THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS###STANDARD_JAVA_PACKAGE###STATIC"/>
+ <property name="customImportOrderRules"
value="THIRD_PARTY_PACKAGE,SPECIAL_IMPORTS,STANDARD_JAVA_PACKAGE,STATIC"/>
<property name="sortImportsInGroupAlphabetically" value="true"/>
<property name="separateLineBetweenGroups" value="true"/>
<property name="standardPackageRegExp" value="^(java|javax)\."/>