(slop) Remove additional vestigial seek() implementations

This commit is contained in:
Viktor Lofgren 2024-07-27 13:57:07 +02:00
parent 6c3abff664
commit 2e1f669aea
5 changed files with 0 additions and 19 deletions

View File

@ -61,10 +61,6 @@ public class ByteColumn {
storage.skip(positions, Byte.BYTES);
}
public void seek(long position) throws IOException {
storage.seek(position, Byte.BYTES);
}
@Override
public boolean hasRemaining() throws IOException {
return storage.hasRemaining();

View File

@ -61,9 +61,6 @@ public class CharColumn {
storage.skip(positions, Character.BYTES);
}
public void seek(long position) throws IOException {
storage.seek(position, Character.BYTES);
}
@Override
public boolean hasRemaining() throws IOException {

View File

@ -61,10 +61,6 @@ public class DoubleColumn {
storage.skip(positions, Double.BYTES);
}
public void seek(long position) throws IOException {
storage.seek(position, Double.BYTES);
}
@Override
public boolean hasRemaining() throws IOException {
return storage.hasRemaining();

View File

@ -62,10 +62,6 @@ public class FloatColumn {
storage.skip(positions, Float.BYTES);
}
public void seek(long position) throws IOException {
storage.seek(position, Float.BYTES);
}
@Override
public boolean hasRemaining() throws IOException {
return storage.hasRemaining();

View File

@ -68,10 +68,6 @@ public class IntColumn {
storage.skip(positions, Integer.BYTES);
}
public void seek(long position) throws IOException {
storage.seek(position, Integer.BYTES);
}
@Override
public boolean hasRemaining() throws IOException {
return storage.hasRemaining();