Skip to content

Commit

Permalink
refactor(utils): Drop an obvious explicit return type
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Viernau <[email protected]>
  • Loading branch information
fviernau committed May 4, 2023
1 parent e4b3b91 commit 62e90ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/test/src/main/kotlin/Extensions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ infix fun <T : Any> T?.shouldNotBeNull(block: T.() -> Unit) {
block()
}

fun FileArchiver.Companion.createDefault(): FileArchiver =
fun FileArchiver.Companion.createDefault() =
FileArchiver(
patterns = LicenseFilePatterns.DEFAULT.allLicenseFilenames.map { "**/$it" },
storage = FileProvenanceFileStorage(
Expand Down

0 comments on commit 62e90ad

Please sign in to comment.