Skip to content

Commit

Permalink
fix(fossid): Fix a copy & paste error in a property name
Browse files Browse the repository at this point in the history
The properties to detect license declarations and copyright statements
were both named "detectLicenseDeclarations". Rename the latter
accordingly.

Signed-off-by: Oliver Heger <[email protected]>
  • Loading branch information
oheger-bosch authored and sschuberth committed Oct 26, 2023
1 parent 88e15aa commit 6dd77a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/scanners/fossid/src/main/kotlin/FossIdConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ data class FossIdConfig(

private const val DETECT_LICENSE_DECLARATIONS_PROPERTY = "detectLicenseDeclarations"

private const val DETECT_COPYRIGHT_STATEMENTS_PROPERTY = "detectLicenseDeclarations"
private const val DETECT_COPYRIGHT_STATEMENTS_PROPERTY = "detectCopyrightStatements"

/** Name of the configuration property defining the timeout in minutes for communication with FossID. */
private const val TIMEOUT = "timeout"
Expand Down

0 comments on commit 6dd77a3

Please sign in to comment.