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 8888958 commit 1e98a15Copy full SHA for 1e98a15
exposed/src/main/kotlin/com/huanshankeji/exposed/Statements.kt
@@ -90,7 +90,7 @@ fun <T : Table> T.deleteIgnoreWhereStatement(
90
// to access the protected `arguments` in the super class
91
class HelperInsertStatement<Key : Any>(table: Table, isIgnore: Boolean = false) :
92
InsertStatement<Key>(table, isIgnore) {
93
- public override var arguments: List<List<Pair<Column<*>, Any?>>>?
+ override var arguments: List<List<Pair<Column<*>, Any?>>>?
94
get() = super.arguments
95
set(value) {
96
super.arguments = value
0 commit comments