File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
model-api-gen/src/main/kotlin/org/modelix/metamodel/generator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import java.nio.file.Path
19
19
class MetaModelGenerator (
20
20
private val outputDir : Path ,
21
21
private val nameConfig : NameConfig = NameConfig (),
22
- private val modelqlOutputDir : Path ? = null ,
22
+ private val modelQlOutputDir : Path ? = null ,
23
23
private val conceptPropertiesInterfaceName : String? = null ,
24
24
private val alwaysUseNonNullableProperties : Boolean = true ,
25
25
) {
@@ -73,10 +73,10 @@ class MetaModelGenerator(
73
73
conceptPropertiesInterfaceName,
74
74
alwaysUseNonNullableProperties,
75
75
).generateFile()
76
- if (modelqlOutputDir != null && concept.getOwnRoles().isNotEmpty()) {
76
+ if (modelQlOutputDir != null && concept.getOwnRoles().isNotEmpty()) {
77
77
ModelQLExtensionsGenerator (
78
78
concept,
79
- modelqlOutputDir ,
79
+ modelQlOutputDir ,
80
80
nameConfig,
81
81
alwaysUseNonNullableProperties,
82
82
).generateFile()
You can’t perform that action at this time.
0 commit comments