Skip to content

Commit 08cd40d

Browse files
chrfwowtoddbaert
authored andcommitted
format
Signed-off-by: christian.lutnik <[email protected]>
1 parent 219d9fb commit 08cd40d

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)