Remove redundant type specifiers
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / util / GroupUtilTest.java
index a2caac19b80a411769a41438d2ce32108c3f8061..ccdf2e861b4bef0e63cee9535578eefdec90f58e 100644 (file)
@@ -128,7 +128,7 @@ public class GroupUtilTest {
 
     private RpcResult<List<BatchFailedGroupsOutput>> createEmptyBatchOutcome() {
         return RpcResultBuilder
-                .<List<BatchFailedGroupsOutput>>success(Collections.<BatchFailedGroupsOutput>emptyList())
+                .success(Collections.<BatchFailedGroupsOutput>emptyList())
                 .build();
     }
 
@@ -234,7 +234,7 @@ public class GroupUtilTest {
     private RpcResult<AddGroupsBatchOutput> createAddGroupsBatchSuccessOutput() {
         return RpcResultBuilder
                 .success(new AddGroupsBatchOutputBuilder()
-                        .setBatchFailedGroupsOutput(Collections.<BatchFailedGroupsOutput>emptyList())
+                        .setBatchFailedGroupsOutput(Collections.emptyList())
                         .build())
                 .build();
     }