forked from JavaTX/JavaCompilerCore
removed unused statement
This commit is contained in:
parent
f66edd4c4b
commit
fa1f3a0507
@ -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"));
|
||||
|
Loading…
Reference in New Issue
Block a user