Skip to content

Commit

Permalink
[ci] Remove extra /p as not required in the javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Feb 4, 2023
1 parent deea6a7 commit 553db6f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/org/apache/ibatis/io/ResolverUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,18 @@
* ResolverUtil is used to locate classes that are available in the/a class path and meet arbitrary conditions. The two
* most common conditions are that a class implements/extends another class, or that is it annotated with a specific
* annotation. However, through the use of the {@link Test} class it is possible to search using arbitrary conditions.
* </p>
* <p>
* A ClassLoader is used to locate all locations (directories and jar files) in the class path that contain classes
* within certain packages, and then to load those classes and check them. By default the ClassLoader returned by
* {@code Thread.currentThread().getContextClassLoader()} is used, but this can be overridden by calling
* {@link #setClassLoader(ClassLoader)} prior to invoking any of the {@code find()} methods.
* </p>
* <p>
* General searches are initiated by calling the {@link #find(Test, String)} and supplying a package name and a Test
* instance. This will cause the named package <b>and all sub-packages</b> to be scanned for classes that meet the test.
* There are also utility methods for the common use cases of scanning multiple packages for extensions of particular
* classes, or classes annotated with a specific annotation.
* </p>
* <p>
* The standard usage pattern for the ResolverUtil class is as follows:
* </p>
*
* <pre>
* ResolverUtil&lt;ActionBean&gt; resolver = new ResolverUtil&lt;ActionBean&gt;();
Expand Down

0 comments on commit 553db6f

Please sign in to comment.