Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionMonitor.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionMonitor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionMonitor.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionMonitor.java
index 0056b057012..1695d08161b 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionMonitor.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/transaction/TransactionMonitor.java
@@ -74,7 +74,7 @@ public class TransactionMonitor {
throw new OseeStateException(
"reportTxEnd called for key: " + key + " but reportTxCreation had not been called.");
} else if (currentTx.getState() != TxState.RUNNING) {
- // This is a valid case -- can add a log to detect when a reportTxEnd is called before a transaction has a chance to run
+ // This is a valid case -- can add a log to detect when a reportTxEnd is called before a transaction has a chance to run
}
if (currentTx.getTransaction().equals(transaction)) {

Back to the top