From 7ee6793e675f2d9b64a1ed76db814ca3d3b51afb Mon Sep 17 00:00:00 2001 From: Xiang Fu Date: Sat, 8 Aug 2026 15:13:06 -0700 Subject: [PATCH] Remove stray blank line in CaseTransformFunction Follow-up to a review comment on #18872. The double blank line was introduced by #19183 rather than removed by it. Checkstyle does not catch it: the RegexpMultiline rule only covers a blank line before a closing brace, not a double blank line between methods. --- .../core/operator/transform/function/CaseTransformFunction.java | 1 - 1 file changed, 1 deletion(-) diff --git a/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/CaseTransformFunction.java b/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/CaseTransformFunction.java index 0822ddd18064..bea5833d133c 100644 --- a/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/CaseTransformFunction.java +++ b/pinot-core/src/main/java/org/apache/pinot/core/operator/transform/function/CaseTransformFunction.java @@ -875,7 +875,6 @@ protected byte[][] transformToBytesValuesSVUsingValueAndNull(ValueBlock valueBlo return _bytesValuesSV; } - @Override public RoaringBitmap getNullBitmap(ValueBlock valueBlock) { int[] selected = getSelectedArray(valueBlock, true);