Fix checkstyle complains
[bgpcep.git] / bgp / rib-impl / src / test / java / org / opendaylight / protocol / bgp / rib / impl / RouteUpdateKeyTest.java
index a20fc7b94572235759f275e4473eb0ee1c69921b..fb470c0e55f42ce197105b18d4cc02205476b3d5 100644 (file)
@@ -9,7 +9,6 @@
 package org.opendaylight.protocol.bgp.rib.impl;
 
 import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotEquals;
 
 import com.google.common.primitives.UnsignedInteger;
@@ -30,7 +29,6 @@ public class RouteUpdateKeyTest {
         assertEquals(PREFIX, rk.getRouteId());
         assertEquals(rk, new RouteUpdateKey(PEER_ID, PREFIX));
         assertEquals(rk, rk);
-        assertFalse(rk.equals(null));
         assertNotEquals(rk, new RouteUpdateKey(PEER_ID_2, PREFIX));
         assertNotEquals(rk, new RouteUpdateKey(PEER_ID_2, PREFIX_2));
     }