Skip to content

Commit

Permalink
Merge pull request #518 from kennethshackleton/sqlite-info-prefer-non…
Browse files Browse the repository at this point in the history
…-data

Model SQLStatementInformation as non-data class to avoid needing to override equals et al.
  • Loading branch information
kennethshackleton authored Apr 23, 2024
2 parents ac3bd60 + 99ebb3d commit c10348f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,8 @@ internal class SQLStatement private constructor(
}
}

@Suppress("ArrayInDataClass")
internal data class SQLStatementInformation(
@Suppress("UseDataClass")
internal class SQLStatementInformation(
val isReadOnly: Boolean,
val parameterCount: Int,
val columnNames: Array<out String>
Expand Down

0 comments on commit c10348f

Please sign in to comment.