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
2014-12-11 12:51:24 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fcf916240981800f740cd52801e967b687117b8f
fcf91624
1 parent
2c255db3
Check if not null in the constructor
Change-Id: I5e73660004e5bb8e9e3c5ba6b02d1070ee977c22
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/intent/impl/IntentManager.java
core/net/src/main/java/org/onosproject/net/intent/impl/IntentManager.java
View file @
fcf9162
...
...
@@ -757,7 +757,7 @@ public class IntentManager
private
int
installAttempt
;
public
IntentInstallMonitor
(
IntentOperations
ops
)
{
this
.
ops
=
ops
;
this
.
ops
=
checkNotNull
(
ops
)
;
resetTimeoutLimit
();
}
...
...
Please
register
or
login
to post a comment