diff --git a/src/main/java/edu/kit/typicalc/model/TypeInferenceResult.java b/src/main/java/edu/kit/typicalc/model/TypeInferenceResult.java index fd6c290..31850a8 100644 --- a/src/main/java/edu/kit/typicalc/model/TypeInferenceResult.java +++ b/src/main/java/edu/kit/typicalc/model/TypeInferenceResult.java @@ -27,7 +27,8 @@ public class TypeInferenceResult { * @param substitutions the substitutions to generate the mgu and the final type * @param typeVar the type variable belonging to the original lambda term * @throws IllegalStateException if the given list of substitutions contains two substitutions for the same - * type variable; or if the calculated mgu contains no substitution for the given type variable + * type variable; or if the calculated mgu contains no substitution for the given + * type variable */ protected TypeInferenceResult(List substitutions, TypeVariable typeVar) { mgu = new ArrayList<>(substitutions);