Skip to content

Commit 7ebe833

Browse files
committed
Fix styles
1 parent 0173f16 commit 7ebe833

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/resolver/AspectModelFileLoader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ private static String content( final InputStream inputStream ) {
7474

7575
private static List<String> headerComment( final String content ) {
7676
return content.lines()
77-
.dropWhile(String::isBlank)
77+
.dropWhile( String::isBlank )
7878
.takeWhile( line -> line.startsWith( "#" ) || isBlank( line ) )
79-
.map(line -> line.startsWith("#") ? line.substring(1).trim() : line)
79+
.map( line -> line.startsWith( "#" ) ? line.substring( 1 ).trim() : line )
8080
.toList();
8181
}
8282

0 commit comments

Comments
 (0)