Skip to content

Commit 82a8df5

Browse files
committed
format
Signed-off-by: christian.lutnik <[email protected]>
1 parent ffb9a37 commit 82a8df5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/dev/openfeature/sdk/AbstractStructure.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ public Map<String, Object> asObjectMap() {
5050

5151
@Override
5252
public boolean equals(Object object) {
53-
if (!(object instanceof AbstractStructure)) return false;
53+
if (!(object instanceof AbstractStructure)) {
54+
return false;
55+
}
5456
AbstractStructure that = (AbstractStructure) object;
5557
return Objects.equals(attributes, that.attributes);
5658
}

0 commit comments

Comments
 (0)