We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31a49fa commit 390b97fCopy full SHA for 390b97f
model/src/main/kotlin/config/CopyrightGarbage.kt
@@ -21,6 +21,14 @@ package org.ossreviewtoolkit.model.config
21
22
import java.util.SortedSet
23
24
-data class CopyrightGarbage(val items: SortedSet<String> = sortedSetOf())
+/**
25
+ * A class that defines which Copyright statements are to be considered as garbage instead of real findings.
26
+ */
27
+data class CopyrightGarbage(
28
+ /**
29
+ * A set of literal strings that identify garbage Copyright findings.
30
31
+ val items: SortedSet<String> = sortedSetOf()
32
+)
33
34
fun CopyrightGarbage?.orEmpty(): CopyrightGarbage = this ?: CopyrightGarbage()
0 commit comments