Skip to content

Commit 581a24c

Browse files
committed
chore(scanner): Remove an explicit type declaration
Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent ab54d7a commit 581a24c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scanner/src/main/kotlin/ScannerMatcher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ data class ScannerMatcher(
7878
}
7979

8080
/** The regular expression to match for the scanner name. */
81-
private val nameRegex: Regex by lazy { Regex(regScannerName) }
81+
private val nameRegex by lazy { Regex(regScannerName) }
8282

8383
init {
8484
require(minVersion < maxVersion) {

0 commit comments

Comments
 (0)