Skip to content

Commit 553db6f

Browse files
committed
[ci] Remove extra /p as not required in the javadoc
1 parent deea6a7 commit 553db6f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/org/apache/ibatis/io/ResolverUtil.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,18 @@
2929
* ResolverUtil is used to locate classes that are available in the/a class path and meet arbitrary conditions. The two
3030
* most common conditions are that a class implements/extends another class, or that is it annotated with a specific
3131
* annotation. However, through the use of the {@link Test} class it is possible to search using arbitrary conditions.
32-
* </p>
3332
* <p>
3433
* A ClassLoader is used to locate all locations (directories and jar files) in the class path that contain classes
3534
* within certain packages, and then to load those classes and check them. By default the ClassLoader returned by
3635
* {@code Thread.currentThread().getContextClassLoader()} is used, but this can be overridden by calling
3736
* {@link #setClassLoader(ClassLoader)} prior to invoking any of the {@code find()} methods.
38-
* </p>
3937
* <p>
4038
* General searches are initiated by calling the {@link #find(Test, String)} and supplying a package name and a Test
4139
* instance. This will cause the named package <b>and all sub-packages</b> to be scanned for classes that meet the test.
4240
* There are also utility methods for the common use cases of scanning multiple packages for extensions of particular
4341
* classes, or classes annotated with a specific annotation.
44-
* </p>
4542
* <p>
4643
* The standard usage pattern for the ResolverUtil class is as follows:
47-
* </p>
4844
*
4945
* <pre>
5046
* ResolverUtil&lt;ActionBean&gt; resolver = new ResolverUtil&lt;ActionBean&gt;();

0 commit comments

Comments
 (0)