Skip to content

Commit 9c541e7

Browse files
committed
[fix] Change formatter around javadoc to retain L&F and correct javadoc error
1 parent 71f07d4 commit 9c541e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/org/apache/ibatis/annotations/SelectProvider.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@
7272
*/
7373
Class<?> type() default void.class;
7474

75+
// @formatter:off
7576
/**
7677
* Specify a method for providing an SQL.
7778
* <p>
7879
* Since 3.5.1, this attribute can omit.
7980
* <p>
8081
* If this attribute omit, the MyBatis will call a method that decide by following rules.
8182
*
82-
* <pre>
8383
* <ul>
8484
* <li>
8585
* If class that specified the {@link #type()} attribute implements the
@@ -93,10 +93,10 @@
9393
* specified type.
9494
* </li>
9595
* </ul>
96-
* </pre>
9796
*
9897
* @return a method name of method for providing an SQL
9998
*/
99+
// @formatter:on
100100
String method() default "";
101101

102102
/**

src/main/java/org/apache/ibatis/annotations/UpdateProvider.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@
7373
*/
7474
Class<?> type() default void.class;
7575

76+
// @formatter:off
7677
/**
7778
* Specify a method for providing an SQL.
7879
* <p>
7980
* Since 3.5.1, this attribute can omit. If this attribute omit, the MyBatis will call a method that decide by
8081
* following rules.
8182
*
82-
* <pre>
8383
* <ul>
8484
* <li>
8585
* If class that specified the {@link #type()} attribute implements the
@@ -92,10 +92,10 @@
9292
* the MyBatis will search and use a fallback method that named <code>provideSql</code> from specified type
9393
* </li>
9494
* </ul>
95-
* </pre>
9695
*
9796
* @return a method name of method for providing an SQL
9897
*/
98+
// @formatter:on
9999
String method() default "";
100100

101101
/**

0 commit comments

Comments
 (0)