make method name more unique
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user