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 @Test
public void unifyTest(){ public void unifyTest(){
UnifyType type1 = new PlaceholderType("a"); UnifyType type1;
UnifyType type2 = new ReferenceType("List", new TypeParams(new ReferenceType("Integer"))); UnifyType type2;
UnifyPair pair1 = new UnifyPair(type1, type2, PairOperator.SMALLERDOT);
Set<UnifyPair> undConstraints = new HashSet<>(); Set<UnifyPair> undConstraints = new HashSet<>();
undConstraints.add(genPairListOfInteger("a")); undConstraints.add(genPairListOfInteger("a"));