File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/mybatis/dynamic/sql/select Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ private R internalBuild() {
137
137
public class OffsetFinisher implements Buildable <R > {
138
138
public OffsetFinisher (long limit , long offset ) {
139
139
buildDelegateMethod = this ::internalBuild ;
140
- SelectDSL . this . pagingModel = new LimitAndOffsetPagingModel .Builder ()
140
+ pagingModel = new LimitAndOffsetPagingModel .Builder ()
141
141
.withLimit (limit )
142
142
.withOffset (offset )
143
143
.build ();
@@ -171,7 +171,7 @@ public R build() {
171
171
}
172
172
173
173
private R internalBuild () {
174
- SelectDSL . this . pagingModel = new FetchFirstPagingModel .Builder ()
174
+ pagingModel = new FetchFirstPagingModel .Builder ()
175
175
.withOffset (offset )
176
176
.build ();
177
177
return SelectDSL .this .internalBuild ();
@@ -180,13 +180,13 @@ private R internalBuild() {
180
180
181
181
public class FetchFirstFinisher {
182
182
public FetchFirstFinisher (long fetchFirstRows ) {
183
- SelectDSL . this . pagingModel = new FetchFirstPagingModel .Builder ()
183
+ pagingModel = new FetchFirstPagingModel .Builder ()
184
184
.withFetchFirstRows (fetchFirstRows )
185
185
.build ();
186
186
}
187
187
188
188
public FetchFirstFinisher (long offset , long fetchFirstRows ) {
189
- SelectDSL . this . pagingModel = new FetchFirstPagingModel .Builder ()
189
+ pagingModel = new FetchFirstPagingModel .Builder ()
190
190
.withOffset (offset )
191
191
.withFetchFirstRows (fetchFirstRows )
192
192
.build ();
You can’t perform that action at this time.
0 commit comments