File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/ql/src/semmle/code/java/frameworks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ class SetPolymorphicTypeValidatorSource extends DataFlow::ExprNode {
77
77
}
78
78
}
79
79
80
- /** Holds if `fromNode` to `toNode` is a dataflow step that resolves a class. s */
80
+ /** Holds if `fromNode` to `toNode` is a dataflow step that resolves a class. */
81
81
predicate resolveClassStep ( DataFlow:: Node fromNode , DataFlow:: Node toNode ) {
82
82
exists ( ReflectiveClassIdentifierMethodAccess ma |
83
83
ma .getArgument ( 0 ) = fromNode .asExpr ( ) and
@@ -88,7 +88,7 @@ predicate resolveClassStep(DataFlow::Node fromNode, DataFlow::Node toNode) {
88
88
/**
89
89
* Holds if `fromNode` to `toNode` is a dataflow step that creates a Jackson parser.
90
90
*
91
- * For example, a `createParser(userString)` call yields a `JsonParser` which becomes dangerous
91
+ * For example, a `createParser(userString)` call yields a `JsonParser`, which becomes dangerous
92
92
* if passed to an unsafely-configured `ObjectMapper`'s `readValue` method.
93
93
*/
94
94
predicate createJacksonJsonParserStep ( DataFlow:: Node fromNode , DataFlow:: Node toNode ) {
You can’t perform that action at this time.
0 commit comments