Skip to content

Commit 7bc7358

Browse files
committed
Fix javadoc build failure: replace non-ASCII arrow/dash characters with ASCII equivalents
1 parent 3cb1744 commit 7bc7358

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

build-info-extractor-maven3/src/main/java/org/jfrog/build/extractor/maven/resolver/ArtifactoryEclipsePluginManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
public class ArtifactoryEclipsePluginManager extends DefaultMavenPluginManager {
2828

2929
// Non-virtual handle to the parent's prerequisites-check method, whichever name it
30-
// currently uses. Maven 3.9.12 renamed checkRequiredMavenVersion checkPrerequisites
30+
// currently uses. Maven 3.9.12 renamed checkRequiredMavenVersion -> checkPrerequisites
3131
// and kept the old name as a deprecated default method on the MavenPluginManager interface
3232
// that internally delegates to the new name. We must therefore look up the new name first:
3333
// on 3.9.12+ that hits the real implementation directly. Falling through to the old name
3434
// is only used on Maven < 3.9.12, where the new name does not exist and the old name is
35-
// a real method on DefaultMavenPluginManager so the check still runs.
35+
// a real method on DefaultMavenPluginManager - so the check still runs.
3636
// If neither exists, the handle stays null and the override below is a safe no-op.
3737
private static final MethodHandle SUPER_PREREQUISITES_CHECK = resolveSuperPrerequisitesCheck();
3838

@@ -65,7 +65,7 @@ public ExtensionRealmCache.CacheRecord setupExtensionsRealm(MavenProject project
6565
return super.setupExtensionsRealm(project, plugin, session);
6666
}
6767

68-
// Declared so Class.getDeclaredMethod on this subclass finds it
68+
// Declared so Class.getDeclaredMethod on this subclass finds it -
6969
// getDeclaredMethod does not walk the superclass chain. Delegates to the parent's
7070
// prerequisites-check method via a MethodHandle resolved at class-load time, falling back
7171
// to the older name (checkRequiredMavenVersion) on Maven < 3.9.12 so the check still runs.

0 commit comments

Comments
 (0)