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
Sho SHIMIZU
2015-09-02 18:22:59 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7a4e9955d6db3710a8898b361ccf09f09c1a7dc2
7a4e9955
1 parent
1178d5b3
Simplify expression
Change-Id: I3c18ac7f5aa48c71dc50704c1c53e35075e60119
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
apps/cordfabric/src/main/java/org/onosproject/cordfabric/CordFabricManager.java
apps/cordfabric/src/main/java/org/onosproject/cordfabric/CordFabricManager.java
View file @
7a4e995
...
...
@@ -338,8 +338,7 @@ public class CordFabricManager implements FabricService {
List
<
FabricVlan
>
fVlans
=
new
ArrayList
<>();
vlans
.
keySet
().
forEach
(
vlan
->
fVlans
.
add
(
//FIXME: Very aweful but will fo for now
new
FabricVlan
(
vlan
,
vlans
.
get
(
vlan
),
vlan
.
toShort
()
==
201
?
true
:
false
)));
new
FabricVlan
(
vlan
,
vlans
.
get
(
vlan
),
vlan
.
toShort
()
==
201
)));
return
fVlans
;
}
...
...
Please
register
or
login
to post a comment