Sho SHIMIZU

Remove unnecessary type parameter and cast

Change-Id: Id3d395a614f94029bc565b2f317b284210cd96cd
......@@ -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);
}
}
......