Skip to content

Commit 9465977

Browse files
committed
Fix unrelated formatting issue
1 parent 0e80072 commit 9465977

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/src/main/java/software/amazon/smithy/java/core/serde/document/DocumentUtils.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,9 @@ private static boolean isBig(Number a, Number b) {
158158
@SmithyInternalApi
159159
public static <T> T getMemberValue(Document container, Schema containerSchema, Schema member) {
160160
// Make sure it's part of the schema.
161-
var value = SchemaUtils.validateMemberInSchema(containerSchema, member,
162-
container.getMember(member.memberName()));
161+
var value = SchemaUtils.validateMemberInSchema(containerSchema,
162+
member,
163+
container.getMember(member.memberName()));
163164
if (value == null) {
164165
return null;
165166
}

0 commit comments

Comments
 (0)