File tree Expand file tree Collapse file tree
sentry-android-sqlite/src/main/java/io/sentry/sqlite Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ import io.sentry.SentryLevel
2222 * ```
2323 *
2424 * **Warning:** Do not use [SentrySQLiteDriver] together with
25- * [io.sentry.android.sqlite.SentrySupportSQLiteOpenHelper] on the same database file. Both wrappers
26- * instrument at different layers, so combining them will produce duplicate spans for every SQL
27- * statement.
25+ * [SentrySupportSQLiteOpenHelper][ io.sentry.android.sqlite.SentrySupportSQLiteOpenHelper] on the
26+ * same database file. Both wrappers instrument at different layers, so combining them will produce
27+ * duplicate spans for every SQL statement.
2828 *
2929 * @param delegate The [SQLiteDriver] instance to delegate calls to.
3030 */
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ internal class SentrySQLiteStatement(
2020 private val delegate : SQLiteStatement ,
2121 private val spanRecorder : SQLiteSpanRecorder ,
2222 private val sql : String ,
23- private val nanoTimeProvider : () -> Long = System : : nanoTime,
23+ private val nanoTimeProvider : () -> Long = { System . nanoTime() } ,
2424) : SQLiteStatement by delegate {
2525
2626 private var firstStepTimestamp: SentryDate ? = null
You can’t perform that action at this time.
0 commit comments