Skip to content

Commit 0391eb7

Browse files
committed
Merge branch 'release/2020-08-rc3'
2 parents e1a065a + f225aba commit 0391eb7

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

app/dao/impl/jpa/JpaRelationshipDao.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,10 @@ public Set<Relationship> findAllByCommitRelatedElement(Commit commit, Element re
186186
.map(ElementVersion::getData).filter(mof -> mof instanceof Relationship)
187187
.map(mof -> (Relationship) mof)
188188
.filter(relationship -> Stream.concat(relationship.getSource().stream(), relationship.getTarget().stream()).map(Element::getIdentifier)
189-
.anyMatch(id -> id.equals(relatedElement.getIdentifier()))).collect(Collectors.toSet());
189+
.anyMatch(id -> id.equals(relatedElement.getIdentifier())))
190+
.map(JpaElementDao.PROXY_RESOLVER)
191+
.map(mof -> (Relationship) mof)
192+
.collect(Collectors.toSet());
190193
});
191194
}
192195

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name := """SysML-v2-API-Services"""
22
organization := "org.omg"
33

4-
version := "2020-08-rc2"
4+
version := "2020-08-rc3"
55

66
javacOptions ++= Seq("-source", "11", "-target", "11", "-Xlint")
77

0 commit comments

Comments
 (0)