Skip to content

Commit

Permalink
Fix missing return statement for reading object attribute values.
Browse files Browse the repository at this point in the history
Closes #34.

Signed-off-by: Łukasz Dywicki <[email protected]>
  • Loading branch information
splatch committed Mar 4, 2024
1 parent 136f0c1 commit 75e649e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ public List<Object> getObjectAttributeValues(BacNetObject object, List<String> p
throw new BacNetClientException("Unable to read object properties.", e);
}
}
return values;
}

List<ReadAccessSpecification> specifications = new ArrayList<>();
Expand Down

0 comments on commit 75e649e

Please sign in to comment.