We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0533909 commit 26e546bCopy full SHA for 26e546b
src/main/kotlin/org/mybatis/dynamic/sql/util/kotlin/KotlinBaseBuilders.kt
@@ -157,7 +157,9 @@ abstract class KotlinBaseBuilder<D : AbstractWhereSupport<*>> {
157
* val rows = countFrom(foo) { allRows() }
158
*/
159
@SuppressWarnings("EmptyFunctionBlock")
160
- fun allRows() {}
+ fun allRows() {
161
+ // intentionally empty - this function exists for code beautification and clarity only
162
+ }
163
164
private fun applyToWhere(block: AbstractWhereDSL<*>.() -> Unit) {
165
getDsl().where().apply(block)
0 commit comments