This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.5.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 062ec1c9b94bbee4ca3d2d5cd692a448b0b7e212 Author: Andriy Redko <[email protected]> AuthorDate: Sat Sep 28 11:22:45 2024 -0400 Fix checkstyle violations (cherry picked from commit 7d161c0f8d43b4a342cd355230774dbf636a1226) --- .../main/java/org/apache/cxf/io/DelayedCachedOutputStreamCleaner.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/cxf/io/DelayedCachedOutputStreamCleaner.java b/core/src/main/java/org/apache/cxf/io/DelayedCachedOutputStreamCleaner.java index 50d94b6737..5edc8027ed 100644 --- a/core/src/main/java/org/apache/cxf/io/DelayedCachedOutputStreamCleaner.java +++ b/core/src/main/java/org/apache/cxf/io/DelayedCachedOutputStreamCleaner.java @@ -19,7 +19,6 @@ package org.apache.cxf.io; -import javax.annotation.Resource; import java.io.Closeable; import java.io.IOException; import java.util.ArrayList; @@ -33,6 +32,8 @@ import java.util.concurrent.Delayed; import java.util.concurrent.TimeUnit; import java.util.logging.Logger; +import javax.annotation.Resource; + import org.apache.cxf.Bus; import org.apache.cxf.buslifecycle.BusLifeCycleListener; import org.apache.cxf.buslifecycle.BusLifeCycleManager;
