Drop unneeded generic type specifiers
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / builder / impl / BuilderUtilsTest.java
index 7573e934a50fdaf4922f4977b6b6fde84c6ede49..11a3f842616cb40ad2f5f5cd0cf2e31c37234d10 100644 (file)
@@ -390,7 +390,7 @@ public class BuilderUtilsTest {
 
     @Test
     public void testFindIdentity() {
-        assertNull(BuilderUtils.findIdentity(Collections.<IdentitySchemaNodeBuilder>emptySet(), "test-identity"));
+        assertNull(BuilderUtils.findIdentity(Collections.emptySet(), "test-identity"));
     }
 
     @Test