This is an automated email from the ASF dual-hosted git repository.
henrib pushed a commit to branch JEXL-360
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git
The following commit(s) were added to refs/heads/JEXL-360 by this push:
new 557cd4a JEXL-360: checkstyle fix, allow star import for parser nodes
557cd4a is described below
commit 557cd4a4c873d6c646e104b4285cfff140e748c1
Author: henrib <[email protected]>
AuthorDate: Tue Feb 15 19:05:30 2022 +0100
JEXL-360: checkstyle fix, allow star import for parser nodes
---
src/main/config/checkstyle.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/config/checkstyle.xml b/src/main/config/checkstyle.xml
index 2af2a52..cb82fd5 100644
--- a/src/main/config/checkstyle.xml
+++ b/src/main/config/checkstyle.xml
@@ -55,7 +55,7 @@ limitations under the License.
<module name="TreeWalker">
<module name="AvoidStarImport">
- <property name="excludes" value="org.junit.Assert"/>
+ <property name="excludes"
value="org.junit.Assert,org.apache.commons.jexl3.parser"/>
</module>
<module name="RedundantImport"/>
<module name="UnusedImports"/>