Upgrade ietf-{inet,yang}-types to 2013-07-15
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / RIBSupportContextRegistry.java
index b18bce1a158f3c4f1e6616a9a4f71681893c6136..3fb31f71305d79c7cdce308e2df0564fb5388047 100644 (file)
@@ -19,7 +19,7 @@ public interface RIBSupportContextRegistry {
      * @return RIBSupport instance, or null if the AFI/SAFI is
      *         not implemented.
     */
-    @Nullable abstract RIBSupportContext getRIBSupportContext(TablesKey key);
+    @Nullable RIBSupportContext getRIBSupportContext(TablesKey key);
 
     /**
      * Acquire a RIB Support Context for a AFI/SAFI combination.
@@ -27,5 +27,5 @@ public interface RIBSupportContextRegistry {
      * @return RIBSupport instance, or null if the AFI/SAFI is
      *         not implemented.
     */
-    @Nullable abstract RIBSupportContext getRIBSupportContext(NodeIdentifierWithPredicates key);
+    @Nullable RIBSupportContext getRIBSupportContext(NodeIdentifierWithPredicates key);
 }