Skip to content
Snippets Groups Projects
Commit 39b5fd89 authored by meiyangbigswitch's avatar meiyangbigswitch
Browse files

cleanup

parent 30c54e9d
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,7 @@ public class FCQueryObj {
if (!matchPortList.equals(other.matchPortList)) return false;
if (!vlans.equals(other.vlans)) return false;
if (portDown != other.portDown) return false;
if (mac != other.mac) return false;
if (!mac.equals(other.mac)) return false;
if (tag != other.tag) return false;
if (srcIpsubnet == null) {
if (other.srcIpsubnet != null) return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment