Remove duplicated code
[bgpcep.git] / bgp / l3vpn / src / main / java / org / opendaylight / protocol / bgp / l3vpn / AbstractVpnRIBSupport.java
index 8b8c96e051bf43636b9b51e92c61a9b164bb1bc7..47cdd59dfe65290732bf1d8fd2a53ad2439fe1c4 100644 (file)
@@ -8,8 +8,6 @@
 package org.opendaylight.protocol.bgp.l3vpn;
 
 import com.google.common.base.Preconditions;
-import com.google.common.collect.ImmutableCollection;
-import com.google.common.collect.ImmutableSet;
 import io.netty.buffer.ByteBuf;
 import io.netty.buffer.Unpooled;
 import java.util.Collection;
@@ -127,21 +125,6 @@ public abstract class AbstractVpnRIBSupport extends AbstractRIBSupport<VpnRoute,
         return routes.stream().map(this::extractVpnDestination).collect(Collectors.toList());
     }
 
-    @Override
-    public ImmutableCollection<Class<? extends DataObject>> cacheableAttributeObjects() {
-        return ImmutableSet.of();
-    }
-
-    @Override
-    public ImmutableCollection<Class<? extends DataObject>> cacheableNlriObjects() {
-        return ImmutableSet.of();
-    }
-
-    @Override
-    public boolean isComplexRoute() {
-        return true;
-    }
-
     @Override
     protected void processDestination(final DOMDataWriteTransaction tx, final YangInstanceIdentifier routesPath,
         final ContainerNode destination, final ContainerNode attributes, final ApplyRoute function) {