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
Thomas Vachuska
2014-11-12 15:42:26 -0800
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
Gerrit Code Review
2014-11-12 15:42:26 -0800
Commit
c379fa54d4a724da5223042652d2916713c67eb8
c379fa54
2 parents
3d4e018e
aaaa9630
Merge "Remove null check because of guarantee of non-null"
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
core/net/src/main/java/org/onlab/onos/net/intent/impl/PathIntentInstaller.java
core/net/src/main/java/org/onlab/onos/net/intent/impl/PathIntentInstaller.java
View file @
c379fa5
...
...
@@ -138,9 +138,6 @@ public class PathIntentInstaller implements IntentInstaller<PathIntent> {
* @return allocated resources if any are required, null otherwise
*/
private
LinkResourceAllocations
allocateResources
(
PathIntent
intent
)
{
if
(
intent
.
constraints
()
==
null
)
{
return
null
;
}
LinkResourceRequest
.
Builder
builder
=
DefaultLinkResourceRequest
.
builder
(
intent
.
id
(),
intent
.
path
().
links
());
for
(
Constraint
constraint
:
intent
.
constraints
())
{
...
...
Please
register
or
login
to post a comment