Skip to content

Commit

Permalink
Apply spotless.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdblue committed Jan 1, 2024
1 parent 9962d62 commit 16e734b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ public ValueReader<?> record(Type partner, Schema record, List<ValueReader<?>> f

Object constant = idToConstant.get(fieldId);
if (projectionPos != null && constant != null) {
readPlan.add(Pair.of(projectionPos, ValueReaders.replaceWithConstant(fieldReader, constant)));
readPlan.add(
Pair.of(projectionPos, ValueReaders.replaceWithConstant(fieldReader, constant)));
} else {
readPlan.add(Pair.of(projectionPos, fieldReader));
}
Expand Down

0 comments on commit 16e734b

Please sign in to comment.