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 c83fa0bcd42bf666388d7c5c7ce7cf255e3326b0
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Dec 26 16:07:05 2025 -0500

    Variable: Normalize spelling
---
 .../java/org/apache/commons/scxml2/invoke/SimpleSCXMLInvoker.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/scxml2/invoke/SimpleSCXMLInvoker.java 
b/src/main/java/org/apache/commons/scxml2/invoke/SimpleSCXMLInvoker.java
index 893c7d72..222e870c 100644
--- a/src/main/java/org/apache/commons/scxml2/invoke/SimpleSCXMLInvoker.java
+++ b/src/main/java/org/apache/commons/scxml2/invoke/SimpleSCXMLInvoker.java
@@ -48,7 +48,7 @@ public class SimpleSCXMLInvoker implements Invoker, 
Serializable {
     /** The invoked state machine executor. */
     private SCXMLExecutor executor;
     /** Cancellation status. */
-    private boolean cancelled;
+    private boolean canceled;
 
     /**
      * {@inheritDoc}.
@@ -56,7 +56,7 @@ public class SimpleSCXMLInvoker implements Invoker, 
Serializable {
     @Override
     public void cancel()
     throws InvokerException {
-        cancelled = true;
+        canceled = true;
         executor.getParentSCXMLIOProcessor().close();
         executor.addEvent(new EventBuilder("cancel.invoke."+ invokeId, 
TriggerEvent.CANCEL_EVENT).build());
     }
@@ -129,7 +129,7 @@ public class SimpleSCXMLInvoker implements Invoker, 
Serializable {
     @Override
     public void parentEvent(final TriggerEvent evt)
     throws InvokerException {
-        if (!cancelled) {
+        if (!canceled) {
             executor.addEvent(evt);
         }
     }
@@ -140,7 +140,7 @@ public class SimpleSCXMLInvoker implements Invoker, 
Serializable {
     @Override
     public void setInvokeId(final String invokeId) {
         this.invokeId = invokeId;
-        this.cancelled = false;
+        this.canceled = false;
     }
 
     /**

Reply via email to