You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by he...@apache.org on 2022/02/18 13:35:27 UTC

[commons-jexl] 03/05: JEXL-360: checkstyle fix, allow star import for parser nodes

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

commit c120c87f2f5f795e33b9a5a5dbc43c5de0b05383
Author: henrib <he...@apache.org>
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"/>