Satish K
Committed by Gerrit Code Review

Review fix of pcep

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