Skip to content

Commit 9746ab4

Browse files
committed
Javadoc typo fixes
No code and no semantic change, just fixing Javadoc that caused errors.
1 parent a65fa20 commit 9746ab4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

maven-resolver-demos/maven-resolver-demo-snippets/src/main/java/org/apache/maven/resolver/examples/ResolveTransitiveDependenciesParallel.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@
4040

4141
/**
4242
* Resolves the transitive (compile) LARGE dependencies of an imaginary artifact in parallel.
43-
* This is the reproducer for locking issues: <a href="https://github.com/apache/maven-resolver/issues/1644>GH-1644</a>
44-
* This code does NOT run as part of build/tests, it is meant to be ad-hoc run from IDE or alike. */
43+
* This is the reproducer for locking issues: <a href="https://github.com/apache/maven-resolver/issues/1644">GH-1644</a>.
44+
* This code does NOT run as part of build/tests, it is meant to be ad-hoc run from IDE or alike.
45+
*/
4546
public class ResolveTransitiveDependenciesParallel {
4647

4748
/**

maven-resolver-spi/src/main/java/org/eclipse/aether/spi/locking/LockingInhibitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
public interface LockingInhibitor {
3030
/**
31-
* Should return {@code true for artifacts that needs lock inhibition.
31+
* Should return {@code true} for artifacts that needs lock inhibition.
3232
* <p>
3333
* <em>Warning: you do not want to override this method, or if you do, think twice.</em>
3434
*/

maven-resolver-spi/src/main/java/org/eclipse/aether/spi/locking/LockingInhibitorFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* artifact locking inhibition is given as option, it should never happen in fact, as aforementioned conditions
3232
* never stand for them. On the other hand, good examples of resources may be needing locking inhibition are
3333
* archetype catalogs and RRF prefix files, as both are metadata, hence their remotely fetched cache entries do not
34-
* conflict locally, furthermore both are produced by remote entities only, and are just cached and read by Maven.
34+
* conflict locally, furthermore both are produced by remote entities only, and are just cached and read by Maven.</em>
3535
*
3636
* @since 2.0.14
3737
*/

0 commit comments

Comments
 (0)