Skip to content

Commit

Permalink
chore: checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosentino11 committed Jun 28, 2024
1 parent c686e1f commit 6eb5c02
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ private Optional<Map<String, String>> getThingAttributes(String thingName) {
logger.atTrace().log("Fetching thing description from cloud");
Optional<Map<String, String>> attributes = fetchThingAttributes(thingName);
attributes.ifPresent(attrs ->
runtimeConfiguration.putThingDescriptionV1(new ThingDescriptionV1DTO(thingName, attrs, LocalDateTime.now())));
runtimeConfiguration.putThingDescriptionV1(
new ThingDescriptionV1DTO(thingName, attrs, LocalDateTime.now())));
return attributes;
}

Expand Down

0 comments on commit 6eb5c02

Please sign in to comment.