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-10-02 10:53:26 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7431fa1ea31cb37c4c102905b381d4e0ebd2209e
7431fa1e
1 parent
8d7caff4
Remove unnecessary continue
Change-Id: I7e3b68c3b5c40520aaac2821dc4e3848eec89520
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
apps/optical/src/main/java/org/onosproject/optical/OpticalPathProvisioner.java
apps/optical/src/main/java/org/onosproject/optical/OpticalPathProvisioner.java
View file @
7431fa1
...
...
@@ -292,7 +292,6 @@ public class OpticalPathProvisioner {
.
bidirectional
(
true
)
.
build
();
intents
.
add
(
circuitIntent
);
continue
;
}
else
if
(
srcPort
instanceof
OchPort
&&
dstPort
instanceof
OchPort
)
{
// Create lightpath
// FIXME: hardcoded ODU signal type
...
...
@@ -304,7 +303,6 @@ public class OpticalPathProvisioner {
.
bidirectional
(
true
)
.
build
();
intents
.
add
(
opticalIntent
);
continue
;
}
else
{
log
.
warn
(
"Unsupported cross connect point types {} {}"
,
srcPort
.
type
(),
dstPort
.
type
());
return
Collections
.
emptyList
();
...
...
Please
register
or
login
to post a comment