Merge "BUG-2383 : proper wildcard and Tables for EffectiveRIB"
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / RouterIds.java
index ddaeb43ff054dce3d101931b3998f732ee0ab28f..a638c693663954950b4e4b75d3348f498abd9fab 100644 (file)
@@ -42,11 +42,11 @@ final class RouterIds {
      * @param address Router ID as a dotted-quad
      * @return Router ID as an {@link UnsignedInteger}
      */
-    public static UnsignedInteger routerIdForAddress(final @Nonnull String address) {
+    public static UnsignedInteger routerIdForAddress(@Nonnull final String address) {
         return ROUTER_IDS.getUnchecked(address);
     }
 
-    public static UnsignedInteger routerIdForPeerId(final @Nonnull PeerId peerId) {
+    public static UnsignedInteger routerIdForPeerId(@Nonnull final PeerId peerId) {
         Preconditions.checkArgument(peerId.getValue().startsWith(BGP_PREFIX), "Unhandled peer ID %s", peerId);
         return BGP_ROUTER_IDS.getUnchecked(peerId);
     }