Skip to content

Commit 6d2920b

Browse files
committed
Fix styles
1 parent c8680e7 commit 6d2920b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/esmf-aspect-model-document-generators/src/main/java/org/eclipse/esmf/aspectmodel/generator/sql/databricks/AspectModelDatabricksDenormalizedSqlVisitor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public String visitCollection( final Collection collection, final Context contex
277277
}
278278

279279
private String processComplexType( final ComplexType entity, final Context context, final String parentPrefix,
280-
final boolean isCollection ) {
280+
final boolean isDefaultList ) {
281281
StringBuilder columns = new StringBuilder();
282282
final String lineDelimiter = ",\n ";
283283

@@ -296,7 +296,7 @@ private String processComplexType( final ComplexType entity, final Context conte
296296
.append( lineDelimiter );
297297
}
298298

299-
if ( isCollection && !parentPrefix.contains( LEVEL_DELIMITER ) ) {
299+
if ( isDefaultList && !parentPrefix.contains( LEVEL_DELIMITER ) ) {
300300
columnPrefix = parentPrefix + LEVEL_DELIMITER + columnName( property );
301301
}
302302

0 commit comments

Comments
 (0)