commit | 3420773d06b266c8e2bc4cb584537fc108c78103 | [log] [tgz] |
---|---|---|
author | Satish K <satishk@huawei.com> | Sat Nov 21 00:01:33 2015 +0530 |
committer | Gerrit Code Review <gerrit@onlab.us> | Tue Nov 24 19:30:12 2015 +0000 |
tree | 920f2a8e62d503c32562f55a7fb8429d9404439f | |
parent | e3661782db7e44b53d0f0d1e230e0a64222b42a3 [diff] |
Review fix of pcep Change-Id: Ib602a638a9abf0c994423a92e1f5f24446f14b32
diff --git a/protocols/pcep/pcepio/src/main/java/org/onosproject/pcepio/types/OpaqueNodeAttributeTlv.java b/protocols/pcep/pcepio/src/main/java/org/onosproject/pcepio/types/OpaqueNodeAttributeTlv.java index 5aec8c5..26e8c8b 100644 --- a/protocols/pcep/pcepio/src/main/java/org/onosproject/pcepio/types/OpaqueNodeAttributeTlv.java +++ b/protocols/pcep/pcepio/src/main/java/org/onosproject/pcepio/types/OpaqueNodeAttributeTlv.java
@@ -107,7 +107,7 @@ if (this == obj) { return true; } - if (obj instanceof OpaqueLinkAttributeTlv) { + if (obj instanceof OpaqueNodeAttributeTlv) { OpaqueNodeAttributeTlv other = (OpaqueNodeAttributeTlv) obj; return Objects.equals(this.rawValue, other.rawValue); }