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
2016-08-18 13:54:46 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f24b88c87e186dbdcef9e4063f526414dd11f3a7
f24b88c8
1 parent
13f6515c
Fix map type mismatch
Change-Id: Iadda7707b4ab4f01b5026d314f25a10748d94915
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/store/dist/src/main/java/org/onosproject/store/resource/impl/EncodableDiscreteResources.java
core/store/dist/src/main/java/org/onosproject/store/resource/impl/EncodableDiscreteResources.java
View file @
f24b88c
...
...
@@ -133,7 +133,7 @@ final class EncodableDiscreteResources implements DiscreteResources {
@Override
public
boolean
containsAny
(
Set
<
DiscreteResource
>
other
)
{
return
other
.
stream
()
.
filter
(
x
->
!
map
.
containsKey
(
x
))
.
filter
(
x
->
map
.
containsKey
(
getClass
(
x
)
))
.
anyMatch
(
x
->
map
.
get
(
getClass
(
x
)).
contains
(
x
));
}
...
...
Please
register
or
login
to post a comment