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() {
140140 }
141141
142142 public class OffsetFinisher implements Buildable <R > {
143- private LimitAndOffsetPagingModel pagingModel ;
144-
145143 public OffsetFinisher (long limit , long offset ) {
146- pagingModel = new LimitAndOffsetPagingModel .Builder ()
144+ SelectDSL . this . pagingModel = new LimitAndOffsetPagingModel .Builder ()
147145 .withLimit (limit )
148146 .withOffset (offset )
149147 .build ();
150148 }
151149
152150 @ Override
153151 public R build () {
154- SelectDSL .this .pagingModel = pagingModel ;
155152 return SelectDSL .this .build ();
156153 }
157154 }
@@ -196,7 +193,6 @@ public RowsOnlyFinisher rowsOnly() {
196193 }
197194
198195 public class RowsOnlyFinisher implements Buildable <R > {
199-
200196 @ Override
201197 public R build () {
202198 return SelectDSL .this .build ();
You can’t perform that action at this time.
0 commit comments