ovsdb enable checkstyle on error
[ovsdb.git] / southbound / southbound-impl / src / main / java / org / opendaylight / ovsdb / southbound / ovsdb / transact / QueueUpdateCommand.java
index 8d9ea99798e634b0b4baea111663aa873a22d20b..4c6453f3181584e5ce6719d19c7ade2206a1d75e 100644 (file)
@@ -83,7 +83,7 @@ public class QueueUpdateCommand implements TransactCommand {
                 if (queueEntry.getDscp() != null) {
                     try {
                         Set<Long> dscpSet = new HashSet<>();
-                            if (dscpSet.add(new Long(queueEntry.getDscp().toString()))) {
+                        if (dscpSet.add(new Long(queueEntry.getDscp().toString()))) {
                             queue.setDscp(dscpSet);
                         }
                     } catch (NumberFormatException e) {
@@ -114,8 +114,8 @@ public class QueueUpdateCommand implements TransactCommand {
 
                 Uuid operQueueUuid = getQueueEntryUuid(operQueues, queueEntry.getQueueId());
                 if (operQueueUuid == null) {
-                    UUID namedUuid = new UUID(SouthboundConstants.QUEUE_NAMED_UUID_PREFIX +
-                            TransactUtils.bytesToHexString(queueEntry.getQueueId().getValue().getBytes()));
+                    UUID namedUuid = new UUID(SouthboundConstants.QUEUE_NAMED_UUID_PREFIX
+                            TransactUtils.bytesToHexString(queueEntry.getQueueId().getValue().getBytes()));
                     transaction.add(op.insert(queue).withId(namedUuid.toString())).build();
                 } else {
                     UUID uuid = new UUID(operQueueUuid.getValue());