slachiewicz opened a new pull request, #428:
URL: https://github.com/apache/maven-shared-utils/pull/428
42 references in `@deprecated` notes named classes that do not exist. Since
3.5.0 is largely a deprecation sweep, these notes are the migration advice, and
as written a good part of it sends readers to packages that were never there.
| Wrong | Correct | Count |
|---|---|---|
| `java.nio.files.Files` | `java.nio.file.Files` | 14 |
| `java.nio.charset.StandardCharset` | `StandardCharsets` | 12 |
| `java.nio.Files` | `java.nio.file.Files` | 6 |
| `java.lang.Objects` | `java.util.Objects` | 3 |
| `commons.io.input.XmlStreamWriter` | `commons.io.output.XmlStreamWriter` |
3 |
| `Charset.getDefaultCharset` | `Charset.defaultCharset` | 2 |
| `commons.io.FileNameUtils` | `commons.io.FilenameUtils` | 1 |
| `{}@code` | `{@code` | 1 |
The commons-io packages were read from the 2.22.0 jar rather than assumed:
`XmlStreamReader` is in `input`, `XmlStreamWriter` is in `output`. The
`XmlStreamReader` references were already right and are untouched.
Javadoc text only across 6 files. No signature, behaviour or dependency
changes.
Verified: `mvn -B javadoc:javadoc` -> BUILD SUCCESS. `mvn -B verify` on JDK
17 -> Tests run: 788, Failures: 0, Errors: 0. Spotless clean. The `no comment`
warnings that remain are pre-existing and untouched.
*This change was created with AI assistance.*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]