Skip to content

Commit f25d745

Browse files
committed
Fix QL formatting
1 parent bedfe1e commit f25d745

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

rust/ql/lib/codeql/rust/security/HardcodedCryptographicValueExtensions.qll

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,14 @@ module HardcodedCryptographicValue {
134134
/**
135135
* An externally modeled barrier for hard-coded cryptographic value vulnerabilities.
136136
*
137-
* Note that a barrier will block flow to all hard-coded cryptographic value
138-
* sinks, regardless of the `kind` that is specified. For example a barrier of
139-
* kind `credentials-key` will block flow to a sink of kind `credentials-iv`.
137+
* Note that a barrier will block flow to all hard-coded cryptographic value
138+
* sinks, regardless of the `kind` that is specified. For example a barrier of
139+
* kind `credentials-key` will block flow to a sink of kind `credentials-iv`.
140140
*/
141141
private class ModelsAsDataBarrier extends Barrier {
142-
ModelsAsDataBarrier() { exists(CryptographicValueKind kind | barrierNode(this, "credentials-" + kind)) }
142+
ModelsAsDataBarrier() {
143+
exists(CryptographicValueKind kind | barrierNode(this, "credentials-" + kind))
144+
}
143145
}
144146

145147
/**

0 commit comments

Comments
 (0)