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-scxml.git
commit 84933eaf13bc95a050a3b192a8c12a8bc6d05585 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Sep 12 10:41:23 2024 -0400 Use final --- src/main/java/org/apache/commons/scxml2/SCXMLExecutionContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/scxml2/SCXMLExecutionContext.java b/src/main/java/org/apache/commons/scxml2/SCXMLExecutionContext.java index 9213c951..5aaf45e3 100644 --- a/src/main/java/org/apache/commons/scxml2/SCXMLExecutionContext.java +++ b/src/main/java/org/apache/commons/scxml2/SCXMLExecutionContext.java @@ -390,7 +390,7 @@ public class SCXMLExecutionContext implements SCXMLIOProcessor { } try { return invokerClass.getConstructor().newInstance(); - } catch (ReflectiveOperationException ie) { + } catch (final ReflectiveOperationException ie) { throw new InvokerException(ie.getMessage(), ie.getCause()); } }