Skip to content

Commit

Permalink
Merge pull request #145 from kennethshackleton/ide-analyser-round
Browse files Browse the repository at this point in the history
IDE analyser round
  • Loading branch information
kennethshackleton authored Jul 14, 2021
2 parents bdc3448 + a905783 commit c0cb37c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ internal class SQLBlobInputStreamTest {
whenever(size) doReturn expectedSize
whenever(read(any(), any(), any(), any())).doAnswer {
requireNotNull(it.arguments[1] as? ByteArray)[0] = expectedByte
Unit
}
}
BlobInputStream(blob).use {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ internal class SQLBlobOutputStreamTest {
whenever(size) doReturn expectedSize
whenever(read(any(), any(), any(), any())).doAnswer {
requireNotNull(it.arguments[1] as? ByteArray)[0] = expectedByte
Unit
}
}
BlobOutputStream(blob).use {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ allprojects {
}
configure<KtlintExtension> {
version.set(Versions.KTLINT.version)
disabledRules.set(kotlin.collections.setOf("import-ordering", "indent"))
disabledRules.set(setOf("import-ordering", "indent"))
reporters {
reporter(ReporterType.HTML)
}
Expand Down

0 comments on commit c0cb37c

Please sign in to comment.