Skip to content

Commit 6d6224b

Browse files
committed
Fix code style
1 parent 60bf126 commit 6d6224b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/esmf-aspect-meta-model-interface/src/main/java/org/eclipse/esmf/metamodel/datatype/SammXsdType.java

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import java.util.Optional;
2121
import java.util.function.Function;
2222
import java.util.function.Predicate;
23-
2423
import javax.xml.datatype.DatatypeConfigurationException;
2524
import javax.xml.datatype.DatatypeFactory;
2625
import javax.xml.datatype.Duration;

core/esmf-aspect-meta-model-java/src/test-shared/java/org/eclipse/esmf/test/shared/AspectModelAsserts.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ public static <SELF extends AspectModelAssert<SELF, ACTUAL>, ACTUAL extends Aspe
193193
@SuppressWarnings( "IncorrectFormatting" )
194194
//@formatter:off
195195
public static <SELF extends QuantityKindAssert<SELF, ACTUAL>, ACTUAL extends QuantityKind> QuantityKindAssert<SELF, ACTUAL>
196-
assertThat( final ACTUAL quantityKind ) {
196+
assertThat( final ACTUAL quantityKind ) {
197197
//@formatter:on
198198
return new QuantityKindAssert<>( quantityKind );
199199
}

core/esmf-aspect-meta-model-java/src/test/java/org/eclipse/esmf/aspectmodel/edit/AspectChangeManagerTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ void testChangeGroups() {
111111

112112
final Change group = new ChangeGroup( renameAspect, renameProperty );
113113
changeManager.applyChange( group );
114-
assertThat(aspectModel).hasSingleAspectThat().hasName( newAspectName );
115-
assertThat(aspectModel).hasSingleAspectThat().hasSinglePropertyThat().hasName( newPropertyName );
114+
assertThat( aspectModel ).hasSingleAspectThat().hasName( newAspectName );
115+
assertThat( aspectModel ).hasSingleAspectThat().hasSinglePropertyThat().hasName( newPropertyName );
116116
}
117117

118118
@Test

core/esmf-aspect-model-document-generators/src/test/java/org/eclipse/esmf/aspectmodel/generator/diagram/AspectModelDiagramGeneratorTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public OutputStream apply( final String name ) {
8181
return NullOutputStream.INSTANCE;
8282
}
8383
}
84+
8485
final GenerationFunction nameMapper = new GenerationFunction();
8586
generator2.generateDiagrams( AspectModelDiagramGenerator.Format.SVG, nameMapper );
8687
assertThat( nameMapper.count ).isEqualTo( 2 );

0 commit comments

Comments
 (0)