Fix wrong @author: tag which Java 9 JavaDoc chokes on 68/66268/2
authorMichael Vorburger <vorburger@redhat.com>
Wed, 6 Dec 2017 11:17:30 +0000 (12:17 +0100)
committerTom Pantelis <tompantelis@gmail.com>
Wed, 6 Dec 2017 12:14:04 +0000 (12:14 +0000)
see https://stackoverflow.com/questions/47661667/failed-to-build-the-sal-distributed-datastore-error-while-generating-javadoc-in

Change-Id: I6cda4ee59da49d12b1e9cf7613a264d2e5213fe2
Signed-off-by: Michael Vorburger <vorburger@redhat.com>
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardReadTransaction.java
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardReadWriteTransaction.java
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/ShardWriteTransaction.java
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/jmx/mbeans/shard/ShardStatsMXBean.java

index 3978d757a1e64b8a01ed4e529c1d90e158040d27..fc3bfda1eb5582b06cf02f41c155fad5ab31681a 100644 (file)
@@ -17,7 +17,7 @@ import org.opendaylight.controller.cluster.datastore.messages.ReadData;
 /**
  * Actor for a shard read transaction.
  *
- * @author: syedbahm
+ * @author syedbahm
  */
 public class ShardReadTransaction extends ShardTransaction {
     private final AbstractShardDataTreeTransaction<?> transaction;
index 2978fc8d07e9e00304cff648e9d321dda068815e..5e5a2a42cf49fadf1874fb65c79e88c1acfd1fa7 100644 (file)
@@ -16,7 +16,7 @@ import org.opendaylight.controller.cluster.datastore.messages.ReadData;
 /**
  * Actor for a shard read/write transaction.
  *
- * @author: syedbahm
+ * @author syedbahm
  */
 public class ShardReadWriteTransaction extends ShardWriteTransaction {
     public ShardReadWriteTransaction(ReadWriteShardDataTreeTransaction transaction, ActorRef shardActor,
index 56683073cfc5dab4700a482646c467626fa1f49a..dc77b290c9b54f9a106d92d9531c040438dec3ef 100644 (file)
@@ -23,7 +23,7 @@ import org.opendaylight.controller.cluster.datastore.modification.Modification;
 /**
  * Actor for a shard write-only transaction.
  *
- * @author: syedbahm
+ * @author syedbahm
  */
 public class ShardWriteTransaction extends ShardTransaction {