Skip to content

Commit cbf82ec

Browse files
committed
manual code cleanups
1 parent 10a7776 commit cbf82ec

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

writer/src/test/java/io/github/dfa1/vortex/writer/BitpackedEncodingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class BitpackedEncodingTest {
3232
List.of(new DType.Primitive(PType.I32, false)),
3333
false);
3434

35-
private static List<ScanResult> scanAll(VortexReader vf) throws IOException {
35+
private static List<ScanResult> scanAll(VortexReader vf) {
3636
var results = new ArrayList<ScanResult>();
3737
var iter = vf.scan(ScanOptions.all());
3838
while (iter.hasNext()) {

writer/src/test/java/io/github/dfa1/vortex/writer/DeltaEncodingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class DeltaEncodingTest {
3232
List.of(new DType.Primitive(PType.I64, false)),
3333
false);
3434

35-
private static List<ScanResult> scanAll(VortexReader vf) throws IOException {
35+
private static List<ScanResult> scanAll(VortexReader vf) {
3636
var results = new ArrayList<ScanResult>();
3737
var iter = vf.scan(ScanOptions.all());
3838
while (iter.hasNext()) {

writer/src/test/java/io/github/dfa1/vortex/writer/DictEncodingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class DictEncodingTest {
3131
List.of(new DType.Primitive(PType.I32, false)),
3232
false);
3333

34-
private static List<ScanResult> scanAll(VortexReader vf, ScanOptions opts) throws IOException {
34+
private static List<ScanResult> scanAll(VortexReader vf, ScanOptions opts) {
3535
var results = new ArrayList<ScanResult>();
3636
var iter = vf.scan(opts);
3737
while (iter.hasNext()) {

writer/src/test/java/io/github/dfa1/vortex/writer/VortexWriterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class VortexWriterTest {
3737

3838
// ── writeChunk validation ─────────────────────────────────────────────────
3939

40-
private static List<ScanResult> scanAll(VortexReader vf, ScanOptions opts) throws IOException {
40+
private static List<ScanResult> scanAll(VortexReader vf, ScanOptions opts) {
4141
var results = new ArrayList<ScanResult>();
4242
var iter = vf.scan(opts);
4343
while (iter.hasNext()) {

0 commit comments

Comments
 (0)