X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Fregistry%2Fflow%2FFlowRegistryKeyFactory.java;h=1a9948a2bd1137036ce9af73f678550595784c57;hb=549c64638975287f425339b5ab635e6770577fc8;hp=c5acfa0b76b87b56f24c8a7d2dcd1847ecc8be13;hpb=9f162b87886b2bb3917fb5aa8aa3b37f49215516;p=openflowplugin.git diff --git a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/registry/flow/FlowRegistryKeyFactory.java b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/registry/flow/FlowRegistryKeyFactory.java index c5acfa0b76..1a9948a2bd 100644 --- a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/registry/flow/FlowRegistryKeyFactory.java +++ b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/registry/flow/FlowRegistryKeyFactory.java @@ -59,7 +59,6 @@ public class FlowRegistryKeyFactory { return getPriority() == that.getPriority() && getTableId() == that.getTableId() && - getCookie().equals(that.getCookie()) && getMatch().equals(that.getMatch()); } @@ -67,7 +66,6 @@ public class FlowRegistryKeyFactory { public int hashCode() { int result = tableId; result = 31 * result + priority; - result = 31 * result + cookie.hashCode(); result = 31 * result + match.hashCode(); return result; }