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-09 14:37:59 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b89d491606fd5a6baf8a84c6956df1390fde2444
b89d4916
1 parent
c9d8d0a0
Simplify statement
Change-Id: Idd5f4ab291be62001d74b89a93fa48650eaf1e20
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/net/src/main/java/org/onosproject/net/device/impl/OpticalPortOperator.java
core/net/src/main/java/org/onosproject/net/device/impl/OpticalPortOperator.java
View file @
b89d491
...
...
@@ -82,7 +82,7 @@ public final class OpticalPortOperator implements ConfigOperator {
// Port type won't change unless we're overwriting a port completely.
// Watch out for overwrites to avoid class cast craziness.
boolean
noOwrite
=
(
opc
.
type
()
==
descr
.
type
())
?
true
:
false
;
boolean
noOwrite
=
opc
.
type
()
==
descr
.
type
()
;
SparseAnnotations
sa
=
combine
(
opc
,
descr
.
annotations
());
if
(
noOwrite
)
{
...
...
Please
register
or
login
to post a comment