File tree Expand file tree Collapse file tree
src/main/java/org/mybatis/dynamic/sql/dsl Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040public abstract class AbstractDeleteDSL <M , D extends AbstractDeleteDSL <M , D >>
4141 implements WhereOperations <AbstractDeleteDSL <M , D >.DeleteWhereBuilder >,
4242 ConfigurableStatement <D >,
43+ OrderByOperations <D >,
4344 Buildable <M > {
4445 private final SqlTable table ;
4546 private final @ Nullable String tableAlias ;
@@ -82,10 +83,7 @@ public D limitWhenPresent(@Nullable Long limit) {
8283 return getThis ();
8384 }
8485
85- public D orderBy (SortSpecification ... columns ) {
86- return orderBy (Arrays .asList (columns ));
87- }
88-
86+ @ Override
8987 public D orderBy (Collection <? extends SortSpecification > columns ) {
9088 orderByModel = OrderByModel .of (columns );
9189 return getThis ();
Original file line number Diff line number Diff line change 5252
5353public abstract class AbstractUpdateDSL <M , D extends AbstractUpdateDSL <M , D >>
5454 implements WhereOperations <AbstractUpdateDSL <M , D >.UpdateWhereBuilder >,
55+ OrderByOperations <D >,
5556 ConfigurableStatement <D >,
5657 Buildable <M > {
5758
@@ -101,10 +102,7 @@ public D limitWhenPresent(@Nullable Long limit) {
101102 return getThis ();
102103 }
103104
104- public D orderBy (SortSpecification ... columns ) {
105- return orderBy (Arrays .asList (columns ));
106- }
107-
105+ @ Override
108106 public D orderBy (Collection <? extends SortSpecification > columns ) {
109107 orderByModel = OrderByModel .of (columns );
110108 return getThis ();
You can’t perform that action at this time.
0 commit comments