File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/main/java/org/mybatis/dynamic/sql/select Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -140,18 +140,15 @@ public R build() {
140
140
}
141
141
142
142
public class OffsetFinisher implements Buildable <R > {
143
- private LimitAndOffsetPagingModel pagingModel ;
144
-
145
143
public OffsetFinisher (long limit , long offset ) {
146
- pagingModel = new LimitAndOffsetPagingModel .Builder ()
144
+ SelectDSL . this . pagingModel = new LimitAndOffsetPagingModel .Builder ()
147
145
.withLimit (limit )
148
146
.withOffset (offset )
149
147
.build ();
150
148
}
151
149
152
150
@ Override
153
151
public R build () {
154
- SelectDSL .this .pagingModel = pagingModel ;
155
152
return SelectDSL .this .build ();
156
153
}
157
154
}
@@ -196,7 +193,6 @@ public RowsOnlyFinisher rowsOnly() {
196
193
}
197
194
198
195
public class RowsOnlyFinisher implements Buildable <R > {
199
-
200
196
@ Override
201
197
public R build () {
202
198
return SelectDSL .this .build ();
You can’t perform that action at this time.
0 commit comments