Skip to content

Commit fc84819

Browse files
committed
Fix checkstyle violation
1 parent 52d24ed commit fc84819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ private String processComplexType( final ComplexType entity, final Context conte
301301
? Optional.ofNullable( Optional.ofNullable( context.forceDescriptionFromElement() ).orElse( property )
302302
.getDescription( config.commentLanguage() ) )
303303
: Optional.empty();
304-
columns.append( column( columnPrefix, typeDef, property.isOptional(), comment) )
304+
columns.append( column( columnPrefix, typeDef, property.isOptional(), comment ) )
305305
.append( lineDelimiter );
306306
} else if ( type instanceof ComplexType ) {
307307
columns.append( processComplexType( type.as( ComplexType.class ), context, columnPrefix, type.is( DefaultList.class ) ) );

0 commit comments

Comments
 (0)