Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yuta HIGUCHI
2014-10-04 22:35:15 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
adcafb6e269937b951d81fc1377ce2ff0357a4e4
adcafb6e
1 parent
f9ce497c
Add missing null check
Change-Id: I363765d3e033dbc5e2fa9fa86137ace5f869fa46
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
core/api/src/main/java/org/onlab/onos/net/flow/FlowId.java
core/api/src/main/java/org/onlab/onos/net/flow/FlowId.java
View file @
adcafb6
...
...
@@ -26,6 +26,9 @@ public final class FlowId {
if
(
this
==
obj
)
{
return
true
;
}
if
(
obj
==
null
)
{
return
false
;
}
if
(
obj
.
getClass
()
==
this
.
getClass
())
{
FlowId
that
=
(
FlowId
)
obj
;
return
Objects
.
equal
(
this
.
flowid
,
that
.
flowid
);
...
...
Please
register
or
login
to post a comment