Skip to content

Commit 0f7cf1f

Browse files
aalbuelectrum
authored andcommittedNov 3, 2020
Remove unused method
1 parent a82ce33 commit 0f7cf1f

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed
 

‎presto-orc/src/main/java/io/prestosql/orc/writer/TimestampColumnWriter.java

-9
Original file line numberDiff line numberDiff line change
@@ -316,15 +316,6 @@ public void reset()
316316
statisticsBuilder = statisticsBuilderSupplier.get();
317317
}
318318

319-
private void writeTimestampMillis(Block block)
320-
{
321-
for (int i = 0; i < block.getPositionCount(); i++) {
322-
if (!block.isNull(i)) {
323-
writeMillis(type.getLong(block, i));
324-
}
325-
}
326-
}
327-
328319
private void writeTimestampMicros(Block block)
329320
{
330321
for (int i = 0; i < block.getPositionCount(); i++) {

0 commit comments

Comments
 (0)
Please sign in to comment.