Skip to content

Commit c2524ab

Browse files
committed
Fix styles
1 parent feb07e7 commit c2524ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/esmf-aspect-model-java-generator/src/main/java/org/eclipse/esmf/aspectmodel/java/metamodel/StaticMetaModelVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ private <T> String getOptionalStaticDeclarationValue( final Type type, final Opt
547547
public String exampleValue( final Property property, final StaticCodeGenerationContext context ) {
548548
return property.getExampleValue()
549549
.map( exampleValue -> "Optional.of(" + this.visitScalarValue( exampleValue, context ) + ")" )
550-
.orElse("Optional.empty()");
550+
.orElse( "Optional.empty()" );
551551
}
552552

553553
/*

0 commit comments

Comments
 (0)