Skip to content

Commit

Permalink
docs(spdx-utils): Correct a double "not not" in an exception message
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Feb 14, 2024
1 parent cf6fbb2 commit b5e6dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/spdx/src/main/kotlin/SpdxExpression.kt
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class SpdxCompoundExpression(
}

if (!isSubExpression(subExpression)) {
throw InvalidSubExpressionException("$subExpression is not not a valid subExpression of $this")
throw InvalidSubExpressionException("$subExpression is not a valid subExpression of $this")
}

return replaceSubexpressionWithChoice(subExpression, choice)
Expand Down

0 comments on commit b5e6dff

Please sign in to comment.