Skip to content

Commit 149c449

Browse files
committed
Java: Simplify qldoc.
1 parent 9e4fa90 commit 149c449

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/experimental/Security/CWE/CWE-347/MissingJWTSignatureCheck.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private class JwtParserInsecureParseMethods extends Method {
5050
}
5151
}
5252

53-
/** The `onClaimsJwt(jwt)` and `onPlaintextJwt(jwt)` methods defined in `JwtHandler`. */
53+
/** The `on(Claims|Plaintext)Jwt` methods defined in `JwtHandler`. */
5454
private class JwtHandlerOnJwtMethods extends Method {
5555
JwtHandlerOnJwtMethods() {
5656
this.hasName(["onClaimsJwt", "onPlaintextJwt"]) and
@@ -59,7 +59,7 @@ private class JwtHandlerOnJwtMethods extends Method {
5959
}
6060
}
6161

62-
/** The `onClaimsJwt(jwt)` and `onPlaintextJwt(jwt)` methods defined in `JwtHandlerAdapter`. */
62+
/** The `on(Claims|Plaintext)Jwt` methods defined in `JwtHandlerAdapter`. */
6363
private class JwtHandlerAdapterOnJwtMethods extends Method {
6464
JwtHandlerAdapterOnJwtMethods() {
6565
this.hasName(["onClaimsJwt", "onPlaintextJwt"]) and

0 commit comments

Comments
 (0)