Skip to content

Commit e2a90c6

Browse files
committed
Minor fixes.
1 parent 324c282 commit e2a90c6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/me/lemire/integercompression/SkippableIntegerCODEC.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/**
1212
* Interface describing a standard CODEC to compress integers. This is a
13-
* variation on the IntegerCODEC interface meant to be used for head access.
13+
* variation on the IntegerCODEC interface meant to be used for random access.
1414
*
1515
* The main difference is that we must specify the number of integers we wish to
1616
* decode. This information should be stored elsewhere.

src/main/java/me/lemire/integercompression/benchmarktools/BenchmarkSkippable.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ private static int decompressFromSkipTable(Object c, int[] compressed,
8383
if (num > length - uncomppos.get())
8484
num = length - uncomppos.get();
8585
int location = metadata[metapos++];
86-
// System.out.println("location = "+location);
8786
int initvalue = metadata[metapos++];
8887
int outputlocation = uncomppos.get();
8988
if (location != compressedpos.get())

0 commit comments

Comments
 (0)