Code clean up
[bgpcep.git] / programming / impl / src / main / java / org / opendaylight / bgpcep / programming / impl / ProgrammingServiceImpl.java
index 079086d09ec73867cac554c51c9a38647e20f343..72f789eec1149bf838a0167934f352869ff2ff44 100644 (file)
@@ -121,7 +121,7 @@ public final class ProgrammingServiceImpl implements AutoCloseable, InstructionS
         final WriteTransaction t = dataProvider.newWriteOnlyTransaction();
         t.put(LogicalDatastoreType.OPERATIONAL, this.qid,
                 new InstructionsQueueBuilder().setKey(instructionsQueueKey).setInstruction(
-                        Collections.<org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.programming.rev150720.instruction.queue.Instruction> emptyList()).build());
+                        Collections.emptyList()).build());
         t.submit();
     }