From d2ef234e36cb6cce540dcfecd707805095f70239 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 1 Apr 2019 20:05:15 +0200 Subject: [PATCH] Fixup HTML5 javadoc compatibility This fixes use of 'summary' attribute. Change-Id: I872afdef8b678a68f4e1781330c3f11f0e010925 Signed-off-by: Robert Varga --- .../md/sal/common/api/data/AsyncWriteTransaction.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/AsyncWriteTransaction.java b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/AsyncWriteTransaction.java index 70789ccb14..a1e38b3a57 100644 --- a/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/AsyncWriteTransaction.java +++ b/opendaylight/md-sal/sal-common-api/src/main/java/org/opendaylight/controller/md/sal/common/api/data/AsyncWriteTransaction.java @@ -116,8 +116,8 @@ public interface AsyncWriteTransaction

, D> extends AsyncTransa * Invoking cancel() on a finished transaction (future returned by {@link #submit()} already completed will always * fail (return false). * - * @return false if the task could not be cancelled, typically because it has already completed normally - * true otherwise + * @return {@code false} if the task could not be cancelled, typically because it has already completed normally + * {@code true} otherwise * */ boolean cancel(); @@ -228,7 +228,8 @@ public interface AsyncWriteTransaction

, D> extends AsyncTransa * which are based on same initial state, Tx 1 completes successfully * before Tx 2 is submitted. * - * + *
+ * * * * @@ -253,7 +254,8 @@ public interface AsyncWriteTransaction

, D> extends AsyncTransa * which are based on same initial state, Tx 1 completes successfully * before Tx 2 is submitted. * - *

Data store state changes
Initial stateTx 1Tx 2Result
Emptyput(A,1)put(A,2)Tx 2 will fail, state is A=1
Emptyput(A,1)merge(A,2)A=2
+ *
+ * * * * -- 2.36.6
Data store state changes
Initial stateTx 1Tx 2Result
Emptyput(TOP,[])put(TOP,[])Tx 2 will fail, state is TOP=[]