Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOXATransaction.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOXATransaction.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOXATransaction.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOXATransaction.java
index 4272cea08c..1daa7b6ceb 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOXATransaction.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/CDOXATransaction.java
@@ -23,14 +23,13 @@ public interface CDOXATransaction extends CDOUserTransaction
/**
* see {@link CDOXATransaction#isAllowRequestFromTransactionEnabled()}
*/
-
public void setAllowRequestFromTransactionEnabled(boolean allRequest);
/**
* Allow request that come from contains {@link CDOTransaction}. Default value is true.
* <p>
* If the value is true, cdoTransaction.commit() will call xaTransaction.commit and all {@link CDOXATransaction} part
- * of XATransaction will be committed.
+ * of xaTransaction will be committed.
* <p>
* If the value is false, the user will receive an exception by calling cdoTransaction.commit(). The user can only
* commit from {@link CDOXATransaction}.

Back to the top