Skip to content

Commit

Permalink
Add missing javadoc.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Aug 22, 2024
1 parent 16a83a4 commit 28472f9
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,13 +394,15 @@ protected void doApply(Plugin.Engine.Source source, Plugin.Engine.Target target)
* Dispatches a Byte Buddy instrumentation Gradle task.
*
* @param logger The logger to use.
* @param rootLoader The class loader that is used for searching types and applying plugins.
* @param transformations The transformations to apply.
* @param discovery The discovery for plugins to use.
* @param rootLocator The root class file locator.
* @param artifacts The artifacts to include
* @param artifacts The artifacts to include.
* @param discoverySet The source set to discover plugins from or {@code null} if no source set is used.
* @param entryPoint The entry point to use.
* @param classFileVersion The class file version to use.
* @param rootLocationResolver A argument resolver for the root location of this build.
* @param rootLocationResolver An argument resolver for the root location of this build.
* @param suffix The suffix to use for rebased methods or an empty string for using a random suffix.
* @param threads The number of threads to use while instrumenting.
* @param extendedParsing {@code true} if extended parsing should be used.
Expand All @@ -417,7 +419,7 @@ public static void apply(Logger logger,
Discovery discovery,
ClassFileLocator rootLocator,
Iterable<File> artifacts,
@MaybeNull Iterable<File> discoveries,
@MaybeNull Iterable<File> discoverySet,
EntryPoint entryPoint,
ClassFileVersion classFileVersion,
Plugin.Factory.UsingReflection.ArgumentResolver rootLocationResolver,
Expand All @@ -430,7 +432,7 @@ public static void apply(Logger logger,
Plugin.Engine.Source source,
Plugin.Engine.Target target) throws IOException {
Plugin.Engine.Summary summary;
ClassLoader classLoader = ByteBuddySkippingUrlClassLoader.of(rootLoader, discoveries);
ClassLoader classLoader = ByteBuddySkippingUrlClassLoader.of(rootLoader, discoverySet);
try {
if (discovery.isDiscover(transformations)) {
Set<String> undiscoverable = new HashSet<String>();
Expand Down

0 comments on commit 28472f9

Please sign in to comment.