We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8447afb commit 30e86acCopy full SHA for 30e86ac
1 file changed
src/main/java/de/vill/main/UVLModelFactory.java
@@ -2,6 +2,7 @@
2
3
import de.vill.model.*;
4
import de.vill.model.building.AbstractUVLElementFactory;
5
+import de.vill.model.building.DefaultUVLElementFactory;
6
import de.vill.model.building.FeatureModelBuilder;
7
import de.vill.model.building.VariableReference;
8
import de.vill.model.constraint.*;
@@ -50,7 +51,7 @@ public class UVLModelFactory {
50
51
private final List<ParseError> errorList = new LinkedList<>();
52
53
public UVLModelFactory() {
- this(null);
54
+ this(new DefaultUVLElementFactory());
55
}
56
57
public UVLModelFactory(AbstractUVLElementFactory elementFactory) {
0 commit comments