Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Add missing whitespace to all "BlackDuck" occurences #9737

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ internal class ResponseCachingComponentServiceClient(
private val serverUrl: String?,
apiToken: String?
) : ComponentServiceClient {
// The BlackDuck library uses GSON to serialize its POJOs. So use GSON, too, because this is the simplest option.
// The Black Duck library uses GSON to serialize its POJOs. So use GSON, too, because this is the simplest option.
Copy link
Member

@sschuberth sschuberth Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Commit message nit: Some hint / reference about the official spelling would have been nice, like linking to https://www.blackduck.com/company.html. Because interestingly, while in the logo it looks like one word, in prose text they spell themselves indeed as "Black Duck".

private val gson = GsonBuilder().setPrettyPrinting().create()

private val cache = if (overrideFile.isFile) {
Expand Down
2 changes: 1 addition & 1 deletion plugins/advisors/black-duck/src/main/kotlin/BlackDuck.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import org.ossreviewtoolkit.utils.common.enumSetOf
@OrtPlugin(
id = "BlackDuck",
displayName = "BlackDuck",
description = "An advisor that retrieves vulnerability information from a BlackDuck instance.",
description = "An advisor that retrieves vulnerability information from a Black Duck instance.",
factory = AdviceProviderFactory::class
)
class BlackDuck(
Expand Down
2 changes: 1 addition & 1 deletion plugins/reporters/aosd/src/main/kotlin/Aosd21Model.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ internal data class AOSD21(
val externalId: String = "",

/**
* A flag to mark if the software component information is the output from a scan tool like BlackDuck Deep License
* A flag to mark if the software component information is the output from a scan tool like Black Duck Deep License
* Scan, ScanCode, Fossology etc., or if it was prepared manually.
*/
val scanned: Boolean = true,
Expand Down
Loading