Sho SHIMIZU

Remove unnecessary type parameter and cast

Change-Id: Id3d395a614f94029bc565b2f317b284210cd96cd
...@@ -134,7 +134,7 @@ public abstract class ConnectivityIntent extends Intent { ...@@ -134,7 +134,7 @@ public abstract class ConnectivityIntent extends Intent {
134 * @return collection of link resources 134 * @return collection of link resources
135 */ 135 */
136 protected static Collection<NetworkResource> resources(Collection<Link> links) { 136 protected static Collection<NetworkResource> resources(Collection<Link> links) {
137 - return ImmutableSet.<NetworkResource>copyOf((Iterable<? extends NetworkResource>) links); 137 + return ImmutableSet.copyOf(links);
138 } 138 }
139 139
140 } 140 }
......