Commit 594338d
docs: repair seven broken javadoc references
`javadoc:javadoc` failed with "reference not found" in three modules.
Every case was a stale link, mostly left by past refactors:
- StructArray: [io.github.dfa1.vortex.encoding.StructEncoding] — that
package no longer exists; the type is now
reader.decode.StructEncodingDecoder.
- NullableData: [Encoding] — split into EncodingEncoder/EncodingDecoder.
- ArrayStats: [#mostFrequentValueBits()] — the record component is
mostFrequentBits.
- Chunk: [DType] and ByteBoolEncodingDecoder: [BoolArray] — neither type
is imported, so neither resolved. Chunk now uses the FQN (DType appears
only in prose); ByteBool points at MaterializedBoolArray, which is both
imported and what decode() actually returns.
- NullableData: [io.github.dfa1.vortex.reader.array.MaskedArray] and
CodeGen: [FbsTable]/[FbsBuilder] — cross-module targets that are
deliberately unreachable. Writer must not depend on reader, and fbs-gen
emits the core.fbs runtime classes rather than depending on them, so
both are now named as text with the reason stated.
Comment-only: no signature, no behavior. Verified with
`./mvnw package -DskipTests javadoc:javadoc -fae`, which is now clean
across all 17 modules; checkstyle passes.
Note that bare `./mvnw javadoc:javadoc` still fails, but on dependency
resolution rather than javadoc: the goal runs no lifecycle phase, so the
reactor jars do not exist, and the project forbids `mvn install`. Prefix
it with `package -DskipTests` to run the check.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>1 parent 28cc4f7 commit 594338d
6 files changed
Lines changed: 11 additions & 7 deletions
File tree
- fbs-gen/src/main/java/io/github/dfa1/vortex/fbsgen
- reader/src/main/java/io/github/dfa1/vortex/reader
- array
- decode
- writer/src/main/java/io/github/dfa1/vortex/writer
- encode
Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
20 | 23 | | |
21 | 24 | | |
22 | 25 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
| 6 | + | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| |||
0 commit comments