Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
chore(ClassLoaderAccess): Correct JavaDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeV220 committed Jan 29, 2024
1 parent 82c3f69 commit f88f5b8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Provides access to {@link ClassLoader} to add URLs on runtime.
*
* <p>Edited by <a href="https://github.com/GeorgeV220">GeorgeV22</a> to work with {@link ClassLoader}</p>
* <p></p>
* <p>
* Original class: <a href="https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/maven/URLClassLoaderAccess.java">https://github.com/lucko/helper/blob/master/helper/src/main/java/me/lucko/helper/maven/URLClassLoaderAccess.java</a>
*/
public class ClassLoaderAccess {
Expand Down Expand Up @@ -167,6 +167,7 @@ public boolean contains(URL url) {
*
* @param dependency Dependency to check
* @return if the dependency is present to the unopenedURLs or pathURLs.
* @throws URISyntaxException if the dependency is invalid@
*/
public boolean contains(LibraryLoader.@NotNull Dependency dependency) throws URISyntaxException {
return contains(dependency, unopenedURLs) | contains(dependency, pathURLs);
Expand Down

0 comments on commit f88f5b8

Please sign in to comment.