From 6eb5c0228be5309c93ccff05fd320e9e428f86d8 Mon Sep 17 00:00:00 2001 From: Joseph Cosentino Date: Fri, 28 Jun 2024 16:17:17 -0700 Subject: [PATCH] chore: checkstyle --- .../clientdevices/auth/iot/ThingAttributesCache.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/aws/greengrass/clientdevices/auth/iot/ThingAttributesCache.java b/src/main/java/com/aws/greengrass/clientdevices/auth/iot/ThingAttributesCache.java index 15d9778f7..dcb5a08ad 100644 --- a/src/main/java/com/aws/greengrass/clientdevices/auth/iot/ThingAttributesCache.java +++ b/src/main/java/com/aws/greengrass/clientdevices/auth/iot/ThingAttributesCache.java @@ -209,7 +209,8 @@ private Optional> getThingAttributes(String thingName) { logger.atTrace().log("Fetching thing description from cloud"); Optional> attributes = fetchThingAttributes(thingName); attributes.ifPresent(attrs -> - runtimeConfiguration.putThingDescriptionV1(new ThingDescriptionV1DTO(thingName, attrs, LocalDateTime.now()))); + runtimeConfiguration.putThingDescriptionV1( + new ThingDescriptionV1DTO(thingName, attrs, LocalDateTime.now()))); return attributes; }