Skip to content

Commit ec18620

Browse files
committed
Update DJsonb.java
1 parent 56805b6 commit ec18620

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

jsonb/src/main/java/io/avaje/jsonb/core/DJsonb.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public Builder mathTypesAsString(boolean mathTypesAsString) {
256256

257257
@Override
258258
public Builder bufferRecycling(BufferRecycleStrategy strategy) {
259-
this.strategy=strategy;
259+
this.strategy = strategy;
260260
return this;
261261
}
262262

@@ -322,9 +322,9 @@ static JsonAdapter.Factory newAdapterFactory(Type type, AdapterBuilder builder)
322322
requireNonNull(builder);
323323
return (targetType, jsonb) -> simpleMatch(type, targetType) ? builder.build(jsonb).nullSafe() : null;
324324
}
325-
}
326325

327-
private static boolean simpleMatch(Type type, Type targetType) {
328-
return Util.typesMatch(type, targetType);
326+
private static boolean simpleMatch(Type type, Type targetType) {
327+
return Util.typesMatch(type, targetType);
328+
}
329329
}
330330
}

0 commit comments

Comments
 (0)