(Consumer<? super SelectQueryImpl<R>> finisher)
| 676 | } |
| 677 | |
| 678 | final SelectQueryImpl<R> copy(Consumer<? super SelectQueryImpl<R>> finisher) { |
| 679 | return copy(finisher, with); |
| 680 | } |
| 681 | |
| 682 | final SelectQueryImpl<R> copy(Consumer<? super SelectQueryImpl<R>> finisher, WithImpl newWith) { |
| 683 | SelectQueryImpl<R> result = copyTo(CopyClause.END, false, new SelectQueryImpl<>(configuration(), newWith)); |
no test coverage detected