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-04 19:31:56 -0800
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
Gerrit Code Review
2014-11-04 19:31:56 -0800
Commit
af92d1277e6299ea6169beb6aff83a05e4b72614
af92d127
2 parents
db9eb072
f4dbc726
Merge "Remove unnecessary type parameter and cast"
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/api/src/main/java/org/onlab/onos/net/intent/ConnectivityIntent.java
core/api/src/main/java/org/onlab/onos/net/intent/ConnectivityIntent.java
View file @
af92d12
...
...
@@ -134,7 +134,7 @@ public abstract class ConnectivityIntent extends Intent {
* @return collection of link resources
*/
protected
static
Collection
<
NetworkResource
>
resources
(
Collection
<
Link
>
links
)
{
return
ImmutableSet
.
<
NetworkResource
>
copyOf
((
Iterable
<?
extends
NetworkResource
>)
links
);
return
ImmutableSet
.
copyOf
(
links
);
}
}
...
...
Please
register
or
login
to post a comment