mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 18:30:42 +00:00
fix checkstyle
This commit is contained in:
parent
8351a21f78
commit
ad99cc09b8
@ -97,7 +97,8 @@ public class TypeInferer implements TypeInfererInterface {
|
||||
return false;
|
||||
}
|
||||
TypeInferer that = (TypeInferer) o;
|
||||
return tree.equals(that.tree) && unification.equals(that.unification) && typeInfResult.equals(that.typeInfResult);
|
||||
return tree.equals(that.tree) && unification.equals(that.unification)
|
||||
&& typeInfResult.equals(that.typeInfResult);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -98,7 +98,8 @@ public class TypeInfererLet implements TypeInfererInterface {
|
||||
return false;
|
||||
}
|
||||
TypeInfererLet that = (TypeInfererLet) o;
|
||||
return tree.equals(that.tree) && unification.equals(that.unification) && typeInfResult.equals(that.typeInfResult);
|
||||
return tree.equals(that.tree) && unification.equals(that.unification)
|
||||
&& typeInfResult.equals(that.typeInfResult);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -25,7 +25,8 @@ class LatexCreatorTypeTest {
|
||||
@Test
|
||||
void generatedTypeTest() {
|
||||
typeInferer = model.getTypeInferer("x", new HashMap<>()).unwrap();
|
||||
assertEquals(GENERATED_ASSUMPTION_VARIABLE + "_{1}", new LatexCreatorType(typeInferer.getType().get()).getLatex());
|
||||
assertEquals(GENERATED_ASSUMPTION_VARIABLE + "_{1}",
|
||||
new LatexCreatorType(typeInferer.getType().get()).getLatex());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
Reference in New Issue
Block a user