Review fix of pcep

Change-Id: Ib602a638a9abf0c994423a92e1f5f24446f14b32
This commit is contained in:
Satish K 2015-11-21 00:01:33 +05:30 committed by Gerrit Code Review
parent e3661782db
commit 3420773d06

View File

@ -107,7 +107,7 @@ public class OpaqueNodeAttributeTlv implements PcepValueType {
if (this == obj) { if (this == obj) {
return true; return true;
} }
if (obj instanceof OpaqueLinkAttributeTlv) { if (obj instanceof OpaqueNodeAttributeTlv) {
OpaqueNodeAttributeTlv other = (OpaqueNodeAttributeTlv) obj; OpaqueNodeAttributeTlv other = (OpaqueNodeAttributeTlv) obj;
return Objects.equals(this.rawValue, other.rawValue); return Objects.equals(this.rawValue, other.rawValue);
} }