-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Description
The issue
There are three broken links in the user guides.
| Section | Item | Cause |
|---|---|---|
| 2.16.3. Sources of Arguments | ValueArgumentsProvider link |
It is referring to its Javadoc, but the class is private-package |
| 2.16.3. Sources of Arguments | CsvArgumentsProvider link |
It is referring to its Javadoc, but the class is private-package |
| 2.16.4. Argument Conversion | AnnotationBasedArgumentConverter link |
It is referring to the provider package, but the correct is the converter one |
Steps to reproduce
- Click on the "section" link from the table above
- Find the mentioned Item link
- Click on it
Proposed solution
As the ValueArgumentsProvider and the CsvArgumentsProvider classes are package-private, not being generated by the JavaDoc the solution is to redirect the reader to its source code.
For the AnnotationBasedArgumentConverter link, only the package change is sufficient.