File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
srv/src/main/java/my/bookshop/handlers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Result readAddresses(CdsReadEventContext context) {
6262 CqnSelect addressOfNote = CQL .copy (context .getCqn (), new Modifier () {
6363
6464 @ Override
65- public CqnStructuredTypeRef ref (StructuredTypeRef ref ) {
65+ public CqnStructuredTypeRef ref (CqnStructuredTypeRef ref ) {
6666 return CQL .entity (Addresses_ .CDS_NAME )
6767 .filter (p -> p .get (Addresses .BUSINESS_PARTNER ).eq (note .getAddressBusinessPartner ())
6868 .and (p .get (Addresses .ID ).eq (note .getAddressId ())))
@@ -120,7 +120,7 @@ void readNotes(CdsReadEventContext context) {
120120 CqnSelect notesOfAddress = CQL .copy (context .getCqn (), new Modifier () {
121121
122122 @ Override
123- public CqnStructuredTypeRef ref (StructuredTypeRef ref ) {
123+ public CqnStructuredTypeRef ref (CqnStructuredTypeRef ref ) {
124124 return CQL .entity (Notes_ .CDS_NAME ).filter (predicate (segments .get (1 ))).asRef ();
125125 }
126126
You can’t perform that action at this time.
0 commit comments