Skip to content

Commit

Permalink
Fixed java backwards compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hylkevds committed Apr 8, 2024
1 parent 44b925e commit 76f95d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ void check07_SubscribeToEntitySetWithRelativeTopicUpdatePUT() throws ServiceFail
LOGGER.debug(" {} paths", paths.size());
for (var path : paths) {
totalPaths++;
var finalNp = path.getLast();
var finalNp = path.get(path.size() - 1);
String topic = eh2.createUrl(eh2.getCache(finalNp.getEntityType(), 0));
for (int idx = path.size() - 1; idx >= 0; idx--) {
NavigationProperty nextNp = path.get(idx);
Expand Down Expand Up @@ -557,7 +557,7 @@ void check11_SubscribeToEntityWithRelativeTopicUpdatePUT() throws ServiceFailure
LOGGER.debug(" {} paths", paths.size());
for (var path : paths) {
totalPaths++;
var finalNp = path.getLast();
var finalNp = path.get(path.size() - 1);
String topic = eh2.createUrl(eh2.getCache(finalNp.getEntityType(), 0));
for (int idx = path.size() - 1; idx >= 0; idx--) {
NavigationProperty nextNp = path.get(idx);
Expand Down

0 comments on commit 76f95d3

Please sign in to comment.