Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ line-by-line diff is zero.
<dependency>
<groupId>io.github.dfa1.vortex</groupId>
<artifactId>vortex-reader</artifactId>
<version>0.8.0</version>
<version>0.8.3</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions docs/compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ A consumer that only needs to read Vortex files can depend on a strict subset:
<dependency>
<groupId>io.github.dfa1.vortex</groupId>
<artifactId>vortex-reader</artifactId>
<version>0.8.0</version>
<version>0.8.3</version>
</dependency>

<!-- optional: inspector for layout-tree introspection -->
<dependency>
<groupId>io.github.dfa1.vortex</groupId>
<artifactId>vortex-inspector</artifactId>
<version>0.8.0</version>
<version>0.8.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add the dependency to `pom.xml` (inside `<dependencies>`):
<dependency>
<groupId>io.github.dfa1.vortex</groupId>
<artifactId>vortex-reader</artifactId>
<version>0.7.3</version>
<version>0.8.3</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ private static void fastlanesUnpackToSeg(
/// @param currWordByteBase byte offset of the current word within the block
/// @param nextWordByteBase byte offset of the next word within the block
/// @param outRowByteOff byte offset of the row within the transposed output block
@SuppressWarnings("java:S6218") // internal data carrier; record components are arrays of immutable primitives that flow through the unpack loops without ever being compared.
private record UnpackSchedule(
int[] shifts, int[] remainingBits, int[] currentBits,
long[] loMasks, long[] hiMasks,
Expand Down
Loading