make method name more unique

This commit is contained in:
2023-02-25 08:38:15 +01:00
parent 8627d4a412
commit 5e9e34d910
4 changed files with 7 additions and 7 deletions

View File

@@ -121,7 +121,7 @@ public class BSFile implements AutoCloseable {
dirty = true;
}
public void append(final long value) {
public void appendSingleValue(final long value) {
int bytesWritten = VariableByteEncoder.encodeInto(value, buffer.getBuffer(), offsetInBuffer);
if (bytesWritten == 0) {

View File

@@ -25,9 +25,9 @@ public class LongStreamFile implements AutoCloseable {
return new LongStreamFile(bsFile);
}
public void append(final long value) throws IOException {
public void appendSingleValue(final long value) throws IOException {
bsFile.append(value);
bsFile.appendSingleValue(value);
}
public Stream<LongList> streamOfLongLists() {