File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/loader Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -274,12 +274,12 @@ private LoaderContext() {
274
274
275
275
private Set <String > getAllUrnsInModel ( final Model model ) {
276
276
return Streams .stream ( model .listStatements ().mapWith ( statement -> {
277
- final Stream <String > subjectUri = statement .getSubject ().isURIResource () ?
278
- Stream .of ( statement .getSubject ().getURI () ) :
277
+ final Stream <String > subjectUri = statement .getSubject ().isURIResource ()
278
+ ? Stream .of ( statement .getSubject ().getURI () ) :
279
279
Stream .empty ();
280
280
final Stream <String > propertyUri = Stream .of ( statement .getPredicate ().getURI () );
281
- final Stream <String > objectUri = statement .getObject ().isURIResource () ?
282
- Stream .of ( statement .getObject ().asResource ().getURI () ) :
281
+ final Stream <String > objectUri = statement .getObject ().isURIResource ()
282
+ ? Stream .of ( statement .getObject ().asResource ().getURI () ) :
283
283
Stream .empty ();
284
284
285
285
return Stream .of ( subjectUri , propertyUri , objectUri ).flatMap ( Function .identity () )
You can’t perform that action at this time.
0 commit comments