This is an automated email from the ASF dual-hosted git repository.
mjsax pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new 03dd9d99708 MINOR: remove unnecessary empty statement in
ProcessingExceptionHandler (#21516)
03dd9d99708 is described below
commit 03dd9d99708b09f07626ca083a319905fa9031a4
Author: ANUSHREE BONDIA <[email protected]>
AuthorDate: Thu Feb 26 01:09:40 2026 +0530
MINOR: remove unnecessary empty statement in ProcessingExceptionHandler
(#21516)
Remove unnecessary semicolon.
Reviewers: Kirk True <[email protected]>, Matthias J. Sax
<[email protected]>
---
.../org/apache/kafka/streams/errors/ProcessingExceptionHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/streams/src/main/java/org/apache/kafka/streams/errors/ProcessingExceptionHandler.java
b/streams/src/main/java/org/apache/kafka/streams/errors/ProcessingExceptionHandler.java
index f4c32764877..07cf0ff6b0e 100644
---
a/streams/src/main/java/org/apache/kafka/streams/errors/ProcessingExceptionHandler.java
+++
b/streams/src/main/java/org/apache/kafka/streams/errors/ProcessingExceptionHandler.java
@@ -44,7 +44,7 @@ public interface ProcessingExceptionHandler extends
Configurable {
@Deprecated
default ProcessingHandlerResponse handle(final ErrorHandlerContext
context, final Record<?, ?> record, final Exception exception) {
throw new UnsupportedOperationException();
- };
+ }
/**
* Inspects a record and the exception received during processing.