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-03 11:41:12 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2cb7e8056961d70562f25023989381326292c141
2cb7e805
1 parent
28c91c89
Remove condition that is always true
Change-Id: I81ea280042533111102a2c8052454af87854988d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pcep/pcepio/src/main/java/org/onosproject/pcepio/protocol/ver1/PcepErrorMsgVer1.java
pcep/pcepio/src/main/java/org/onosproject/pcepio/protocol/ver1/PcepErrorMsgVer1.java
View file @
2cb7e80
...
...
@@ -163,7 +163,7 @@ public class PcepErrorMsgVer1 implements PcepErrorMsg {
this
.
errInfo
=
new
PcepErrorInfoVer1
(
null
,
null
,
llErrObjList
);
this
.
errInfo
.
read
(
cb
);
}
else
if
(
(
llErrObjList
!=
null
)
&&
(!
llErrObjList
.
isEmpty
()
))
{
}
else
if
(
!
llErrObjList
.
isEmpty
(
))
{
//If only PCEP-ERROR list is present then store it in errObjListWithOpen.
this
.
errObjListWithOpen
=
new
ErrorObjListWithOpen
(
llErrObjList
);
}
else
{
...
...
Please
register
or
login
to post a comment