Skip to content

Commit 1959c53

Browse files
committed
Fix styles
1 parent 28432b2 commit 1959c53

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/loader/ModelElementFactory.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,12 @@ public ModelElementFactory( final Model model, final Map<Resource, Instantiator<
112112
registerInstantiator( SammNs.SAMM.Event(), new EventInstantiator( this ) );
113113
registerInstantiator( SammNs.SAMM.Operation(), new OperationInstantiator( this ) );
114114
registerInstantiator( SammNs.SAMM.Property(), new PropertyInstantiator( this ) );
115-
/**
115+
116+
/*
116117
* Registers an instantiator for the {@link Value} type.
117118
* In aspect-meta-model, {@link Value} corresponds to {@link ScalarValueInstantiator} in the SDK.
118119
*/
119-
registerInstantiator( SammNs.SAMM.Value(), new ScalarValueInstantiator( this ) );
120+
registerInstantiator(SammNs.SAMM.Value(), new ScalarValueInstantiator(this));
120121

121122
registerInstantiator( SammNs.SAMMC.Code(), new CodeInstantiator( this ) );
122123
registerInstantiator( SammNs.SAMMC.Collection(), new CollectionInstantiator( this ) );

0 commit comments

Comments
 (0)