You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ds...@apache.org on 2016/02/18 00:11:01 UTC

[26/33] incubator-geode git commit: GEODE-945: Importing javax.transaction packages to fix javadoc

GEODE-945: Importing javax.transaction packages to fix javadoc

Javadoc was spitting out class not found warnings. It looks like it had
some trouble locating these classes, even though they are on the
classpath. Changing the class to import the packages seems to fix the
javadoc task.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/06317e71
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/06317e71
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/06317e71

Branch: refs/heads/feature/GEODE-831
Commit: 06317e71a42d56510ad304df3a8cc01a0640db1d
Parents: c2175bc
Author: Dan Smith <up...@apache.org>
Authored: Tue Feb 16 17:57:48 2016 -0800
Committer: Dan Smith <up...@apache.org>
Committed: Tue Feb 16 18:02:04 2016 -0800

----------------------------------------------------------------------
 .../gemfire/cache/FailedSynchronizationException.java     | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/06317e71/gemfire-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java b/gemfire-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
index d7fd2fc..4842324 100644
--- a/gemfire-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
+++ b/gemfire-core/src/main/java/com/gemstone/gemfire/cache/FailedSynchronizationException.java
@@ -17,6 +17,10 @@
 
 package com.gemstone.gemfire.cache;
 
+import javax.transaction.Status;
+import javax.transaction.Transaction;
+import javax.transaction.UserTransaction;
+
 /** Thrown when a cache transaction fails to register with the
  * <code>UserTransaction</code> (aka JTA transaction), most likely the
  * cause of the <code>UserTransaction</code>'s
@@ -25,9 +29,9 @@ package com.gemstone.gemfire.cache;
  *
  * @author Mitch Thomas
  *
- * @see javax.transaction.UserTransaction#setRollbackOnly
- * @see javax.transaction.Transaction#registerSynchronization
- * @see javax.transaction.Status
+ * @see UserTransaction#setRollbackOnly
+ * @see Transaction#registerSynchronization
+ * @see Status
  * @since 4.0
  */
 public class FailedSynchronizationException extends CacheRuntimeException {