Code clean up
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / AsPathAttributeParser.java
index b5383148059861046544be1b9929292bd5b585bc..c93c0f7e361cbd1c8a1af4595eeab12dd70c12c8 100644 (file)
@@ -39,7 +39,7 @@ public final class AsPathAttributeParser implements AttributeParser, AttributeSe
     private final ReferenceCache refCache;
     private static final Logger LOG = LoggerFactory.getLogger(AsPathAttributeParser.class);
 
-    private static final AsPath EMPTY = new AsPathBuilder().setSegments(Collections.<Segments> emptyList()).build();
+    private static final AsPath EMPTY = new AsPathBuilder().setSegments(Collections.emptyList()).build();
 
     public AsPathAttributeParser(final ReferenceCache refCache) {
         this.refCache = Preconditions.checkNotNull(refCache);