Skip to content

Commit 0d562d4

Browse files
committed
Swift: Autoformat.
1 parent 48ee4ad commit 0d562d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

swift/ql/lib/codeql/swift/security/HardcodedEncryptionKeyQuery.qll

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ abstract class KeySource extends Expr { }
1717
* A literal byte array is a key source.
1818
*/
1919
class ByteArrayLiteralSource extends KeySource {
20-
ByteArrayLiteralSource() { this = any(ArrayExpr arr | arr.getType().getName() = ["Array<UInt8>", "[UInt8]"]) }
20+
ByteArrayLiteralSource() {
21+
this = any(ArrayExpr arr | arr.getType().getName() = ["Array<UInt8>", "[UInt8]"])
22+
}
2123
}
2224

2325
/**

0 commit comments

Comments
 (0)