This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 4.1.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 8f5ea6fb124b93f68a71b0dc309f333b7509a55e Author: Andriy Redko <[email protected]> AuthorDate: Mon Jun 15 21:31:01 2026 -0400 Fix Checkstyle violations (post-merge) --- .../src/main/java/org/apache/cxf/systest/jaxrs/sse/BookStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systests/rs-sse/rs-sse-base/src/main/java/org/apache/cxf/systest/jaxrs/sse/BookStore.java b/systests/rs-sse/rs-sse-base/src/main/java/org/apache/cxf/systest/jaxrs/sse/BookStore.java index 39f138af4e2..fb797f492fc 100644 --- a/systests/rs-sse/rs-sse-base/src/main/java/org/apache/cxf/systest/jaxrs/sse/BookStore.java +++ b/systests/rs-sse/rs-sse-base/src/main/java/org/apache/cxf/systest/jaxrs/sse/BookStore.java @@ -211,7 +211,7 @@ public class BookStore extends BookStoreClientCloseable { @Path("/headers/sse") @Produces(MediaType.SERVER_SENT_EVENTS) public void headers(@Context SseEventSink sink) { - new Thread(() -> { + new Thread(() -> { try { Thread.sleep(200); sink.close();
