Skip to content

Commit

Permalink
Merge pull request #25856 from gsmet/fix-javadoc-qcl
Browse files Browse the repository at this point in the history
Fix javadoc of QuarkusClassLoader#isClassPresentAtRuntime()
  • Loading branch information
gsmet authored May 30, 2022
2 parents 2b46157 + bd9126c commit a586e0a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ public static List<ClassPathElement> getElements(String resourceName, boolean lo
/**
* Indicates if a given class is present at runtime.
*
* @param resourceName the path of the resource, for instance {@code path/to/my-resources.properties} for a properties file
* or {@code my/package/MyClass.class} for a class.
* @param className the name of the class.
*/
public static boolean isClassPresentAtRuntime(String className) {
return isResourcePresentAtRuntime(className.replace('.', '/') + ".class");
Expand Down

0 comments on commit a586e0a

Please sign in to comment.