File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
src/main/java/org/mybatis/dynamic/sql/select Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 2121import java .util .List ;
2222import java .util .Optional ;
2323import java .util .function .Consumer ;
24- import java .util .function .Function ;
2524
2625import org .jspecify .annotations .Nullable ;
2726import org .mybatis .dynamic .sql .BasicColumn ;
@@ -53,19 +52,14 @@ public static QueryExpressionDSL.FromGatherer select(BasicColumn... selectList)
5352 return select (Arrays .asList (selectList ));
5453 }
5554
56- public static <R > QueryExpressionDSL .FromGatherer select (Function <SelectModel , R > adapterFunction ,
57- BasicColumn ... selectList ) {
58- return select (Arrays .asList (selectList ));
59- }
60-
61- public static <R > QueryExpressionDSL .FromGatherer select (Collection <? extends BasicColumn > selectList ) {
55+ public static QueryExpressionDSL .FromGatherer select (Collection <? extends BasicColumn > selectList ) {
6256 return new FromGatherer .Builder ()
6357 .withSelectList (selectList )
6458 .withSelectDSL (new SelectDSL ())
6559 .build ();
6660 }
6761
68- public static < R > QueryExpressionDSL .FromGatherer selectDistinct (BasicColumn ... selectList ) {
62+ public static QueryExpressionDSL .FromGatherer selectDistinct (BasicColumn ... selectList ) {
6963 return selectDistinct (Arrays .asList (selectList ));
7064 }
7165
You can’t perform that action at this time.
0 commit comments