Fix a warning in CreateTransactionReply 16/14516/3
authorRobert Varga <rovarga@cisco.com>
Mon, 26 Jan 2015 18:09:15 +0000 (19:09 +0100)
committerRobert Varga <rovarga@cisco.com>
Wed, 28 Jan 2015 16:19:00 +0000 (17:19 +0100)
Add a simple type argument to silence an eclipse warning.

Change-Id: Ib89c05ca6cc1161ac267313a559e5ae99605b090
Signed-off-by: Robert Varga <rovarga@cisco.com>
opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/CreateTransactionReply.java

index 3fde6cc7fc2477eba6c6f466cd376d6ff132d1e1..ffd0f1ccf3cfcc79598aad6d03f171fb2c70de61 100644 (file)
@@ -13,7 +13,7 @@ import org.opendaylight.controller.protobuff.messages.transaction.ShardTransacti
 
 public class CreateTransactionReply implements SerializableMessage {
 
-    public static final Class SERIALIZABLE_CLASS = ShardTransactionMessages.CreateTransactionReply.class;
+    public static final Class<?> SERIALIZABLE_CLASS = ShardTransactionMessages.CreateTransactionReply.class;
     private final String transactionPath;
     private final String transactionId;
     private final short version;