mirror of
https://github.com/github/codeql.git
synced 2026-05-04 21:25:44 +02:00
Fix test
This commit is contained in:
@@ -43,10 +43,10 @@ public class EntryPointTypesTest {
|
||||
}
|
||||
|
||||
public static void testParameterized(
|
||||
ParameterizedTestObject<String, AnotherTestObject> source) {
|
||||
ParameterizedTestObject<TestObject, AnotherTestObject> source) {
|
||||
sink(source.field6); // $hasTaintFlow
|
||||
sink(source.getField7().field1); // $hasTaintFlow
|
||||
sink(source.getField7().getField2()); // $hasTaintFlow
|
||||
sink(source.field7.field1); // $hasTaintFlow
|
||||
sink(source.field7.getField2()); // $hasTaintFlow
|
||||
sink(source.getField8().field4); // $hasTaintFlow
|
||||
sink(source.getField8().getField5()); // $hasTaintFlow
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user