Skip to content

Commit 5e29944

Browse files
committed
refactor(model-api-gen): fix parameter name
1 parent f8fc4c1 commit 5e29944

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

model-api-gen/src/main/kotlin/org/modelix/metamodel/generator/MetaModelGenerator.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import java.nio.file.Path
1919
class MetaModelGenerator(
2020
private val outputDir: Path,
2121
private val nameConfig: NameConfig = NameConfig(),
22-
private val modelqlOutputDir: Path? = null,
22+
private val modelQlOutputDir: Path? = null,
2323
private val conceptPropertiesInterfaceName: String? = null,
2424
private val alwaysUseNonNullableProperties: Boolean = true,
2525
) {
@@ -73,10 +73,10 @@ class MetaModelGenerator(
7373
conceptPropertiesInterfaceName,
7474
alwaysUseNonNullableProperties,
7575
).generateFile()
76-
if (modelqlOutputDir != null && concept.getOwnRoles().isNotEmpty()) {
76+
if (modelQlOutputDir != null && concept.getOwnRoles().isNotEmpty()) {
7777
ModelQLExtensionsGenerator(
7878
concept,
79-
modelqlOutputDir,
79+
modelQlOutputDir,
8080
nameConfig,
8181
alwaysUseNonNullableProperties,
8282
).generateFile()

0 commit comments

Comments
 (0)