Skip to content

Commit 2839e9a

Browse files
committed
Make checkstyle happy
1 parent 1db7823 commit 2839e9a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/mybatis/dynamic/sql/util/mybatis3/MyBatis3SelectByExampleHelper.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
* @Result(column="employed", property="employed", jdbcType=JdbcType.VARCHAR),
4040
* @Result(column="occupation", property="occupation", jdbcType=JdbcType.VARCHAR)
4141
* })
42-
* List<SimpleTableRecord> selectMany(SelectStatementProvider selectStatement);
42+
* List<SimpleRecord> selectMany(SelectStatementProvider selectStatement);
4343
*
44-
* default List<SimpleTableRecord> selectByExample(MyBatis3SelectByExampleHelper<SimpleTableRecord> helper) {
44+
* default List<SimpleRecord> selectByExample(MyBatis3SelectByExampleHelper<SimpleRecord> helper) {
4545
* return helper.apply(SelectDSL.selectWithMapper(this::selectMany, simpleTable.allColumns())
4646
* .from(simpleTable))
4747
* .build()
@@ -52,15 +52,15 @@
5252
* <p>And then call the simplified default method like this:
5353
*
5454
* <pre>
55-
* List&lt;SimpleTableRecord&gt; rows = mapper.selectByExample(q -&gt;
55+
* List&lt;SimpleRecord&gt; rows = mapper.selectByExample(q -&gt;
5656
* q.where(id, isEqualTo(1))
5757
* .or(occupation, isNull()));
5858
* </pre>
5959
*
6060
* <p>You can also do a "select all" with the following code:
6161
*
6262
* <pre>
63-
* List&lt;SimpleTableRecord&gt; rows = mapper.selectByExample(q -&gt; q);
63+
* List&lt;SimpleRecord&gt; rows = mapper.selectByExample(q -&gt; q);
6464
* </pre>
6565
*
6666
* @author Jeff Butler

0 commit comments

Comments
 (0)