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() {
137137 public class OffsetFinisher implements Buildable <R > {
138138 public OffsetFinisher (long limit , long offset ) {
139139 buildDelegateMethod = this ::internalBuild ;
140- SelectDSL . this . pagingModel = new LimitAndOffsetPagingModel .Builder ()
140+ pagingModel = new LimitAndOffsetPagingModel .Builder ()
141141 .withLimit (limit )
142142 .withOffset (offset )
143143 .build ();
@@ -171,7 +171,7 @@ public R build() {
171171 }
172172
173173 private R internalBuild () {
174- SelectDSL . this . pagingModel = new FetchFirstPagingModel .Builder ()
174+ pagingModel = new FetchFirstPagingModel .Builder ()
175175 .withOffset (offset )
176176 .build ();
177177 return SelectDSL .this .internalBuild ();
@@ -180,13 +180,13 @@ private R internalBuild() {
180180
181181 public class FetchFirstFinisher {
182182 public FetchFirstFinisher (long fetchFirstRows ) {
183- SelectDSL . this . pagingModel = new FetchFirstPagingModel .Builder ()
183+ pagingModel = new FetchFirstPagingModel .Builder ()
184184 .withFetchFirstRows (fetchFirstRows )
185185 .build ();
186186 }
187187
188188 public FetchFirstFinisher (long offset , long fetchFirstRows ) {
189- SelectDSL . this . pagingModel = new FetchFirstPagingModel .Builder ()
189+ pagingModel = new FetchFirstPagingModel .Builder ()
190190 .withOffset (offset )
191191 .withFetchFirstRows (fetchFirstRows )
192192 .build ();
You can’t perform that action at this time.
0 commit comments