removed unused statement

This commit is contained in:
NoName11234 2024-02-05 19:39:36 +01:00
parent f66edd4c4b
commit fa1f3a0507

View File

@ -112,9 +112,8 @@ public class UnifyTest {
}
@Test
public void unifyTest(){
UnifyType type1 = new PlaceholderType("a");
UnifyType type2 = new ReferenceType("List", new TypeParams(new ReferenceType("Integer")));
UnifyPair pair1 = new UnifyPair(type1, type2, PairOperator.SMALLERDOT);
UnifyType type1;
UnifyType type2;
Set<UnifyPair> undConstraints = new HashSet<>();
undConstraints.add(genPairListOfInteger("a"));