This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-exec.git

commit 0dec70a62d1727d4ce1d31929ac66523487639f5
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 24 11:27:28 2025 -0400

    Fix Checkstype configuration
---
 src/conf/checkstyle-suppressions.xml                    | 6 +++---
 src/test/java/org/apache/commons/exec/TutorialTest.java | 1 -
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/conf/checkstyle-suppressions.xml 
b/src/conf/checkstyle-suppressions.xml
index 102cb60d..f5cd030f 100644
--- a/src/conf/checkstyle-suppressions.xml
+++ b/src/conf/checkstyle-suppressions.xml
@@ -25,9 +25,9 @@ limitations under the License.
   <!--  EnvironmentUtils can be final when we break BC. -->
   <suppress checks="FinalClass" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]environment[/\\]EnvironmentUtils.java"
 />
   <!--  StringUtils can have a private default constructor when we break BC. 
-->
-  <suppress checks="HideUtilityClassConstructor" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]util/StringUtils.java"
 />
+  <suppress checks="HideUtilityClassConstructor" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]util[/\\]StringUtils.java"
 />
   <!--  MapUtils can have a private default constructor when we break BC. -->
-  <suppress checks="HideUtilityClassConstructor" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]util/MapUtils.java"
 />
+  <suppress checks="HideUtilityClassConstructor" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]util[/\\]MapUtils.java"
 />
   <!--  DebugUtils can have a private default constructor when we break BC. -->
-  <suppress checks="HideUtilityClassConstructor" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]util/DebugUtils.java"
 />
+  <suppress checks="HideUtilityClassConstructor" 
files="src[/\\]main[/\\]java[/\\]org[/\\]apache[/\\]commons[/\\]exec[/\\]util[/\\]DebugUtils.java"
 />
 </suppressions>
diff --git a/src/test/java/org/apache/commons/exec/TutorialTest.java 
b/src/test/java/org/apache/commons/exec/TutorialTest.java
index 401522e2..e0853fde 100644
--- a/src/test/java/org/apache/commons/exec/TutorialTest.java
+++ b/src/test/java/org/apache/commons/exec/TutorialTest.java
@@ -27,7 +27,6 @@ import java.nio.file.Path;
 import java.time.Duration;
 import java.util.HashMap;
 import java.util.Map;
-import java.util.concurrent.Executors;
 
 import org.apache.commons.lang3.concurrent.BasicThreadFactory;
 import org.junit.jupiter.api.Test;

Reply via email to