Skip to content

Commit cb0fc0c

Browse files
committed
[ci] Fix at since for new dynamic sql helpers
1 parent f4d1556 commit cb0fc0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/ibatis/jdbc/AbstractSQL.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ public <A extends Appendable> A usingAppender(A a) {
540540
*
541541
* @see #applyIf(BooleanSupplier, Consumer)
542542
*
543-
* @since 3.5.14
543+
* @since 3.5.15
544544
*/
545545
public T applyIf(boolean applyCondition, Consumer<T> sqlConsumer) {
546546
T self = getSelf();
@@ -562,7 +562,7 @@ public T applyIf(boolean applyCondition, Consumer<T> sqlConsumer) {
562562
*
563563
* @see #applyIf(boolean, Consumer)
564564
*
565-
* @since 3.5.14
565+
* @since 3.5.15
566566
*/
567567
public T applyIf(BooleanSupplier applyConditionSupplier, Consumer<T> sqlConsumer) {
568568
return applyIf(applyConditionSupplier.getAsBoolean(), sqlConsumer);
@@ -581,7 +581,7 @@ public T applyIf(BooleanSupplier applyConditionSupplier, Consumer<T> sqlConsumer
581581
* @param <E>
582582
* element type of iterable
583583
*
584-
* @since 3.5.14
584+
* @since 3.5.15
585585
*/
586586
public <E> T applyForEach(Iterable<E> iterable, ForEachConsumer<T, E> forEachSqlConsumer) {
587587
T self = getSelf();
@@ -813,7 +813,7 @@ public String sql(Appendable a) {
813813
* @param <E>
814814
* Element type of iterable
815815
*
816-
* @since 3.5.14
816+
* @since 3.5.15
817817
*/
818818
public interface ForEachConsumer<T, E> {
819819

0 commit comments

Comments
 (0)