Committed by
Gerrit Code Review
Review fix of pcep
Change-Id: Ib602a638a9abf0c994423a92e1f5f24446f14b32
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -107,7 +107,7 @@ public class OpaqueNodeAttributeTlv implements PcepValueType { | ... | @@ -107,7 +107,7 @@ public class OpaqueNodeAttributeTlv implements PcepValueType { |
| 107 | if (this == obj) { | 107 | if (this == obj) { |
| 108 | return true; | 108 | return true; |
| 109 | } | 109 | } |
| 110 | - if (obj instanceof OpaqueLinkAttributeTlv) { | 110 | + if (obj instanceof OpaqueNodeAttributeTlv) { |
| 111 | OpaqueNodeAttributeTlv other = (OpaqueNodeAttributeTlv) obj; | 111 | OpaqueNodeAttributeTlv other = (OpaqueNodeAttributeTlv) obj; |
| 112 | return Objects.equals(this.rawValue, other.rawValue); | 112 | return Objects.equals(this.rawValue, other.rawValue); |
| 113 | } | 113 | } | ... | ... |
-
Please register or login to post a comment