Python: Minor cleanup to snippets

As pointed out in review, we don't need this override any more!
This commit is contained in:
Rasmus Wriedt Larsen
2021-09-02 15:39:47 +02:00
parent 47377c7197
commit ad102e2746
2 changed files with 0 additions and 4 deletions

View File

@@ -180,8 +180,6 @@
"", "",
" /** A direct instantiation of `${TM_SELECTED_TEXT}`. */", " /** A direct instantiation of `${TM_SELECTED_TEXT}`. */",
" private class ClassInstantiation extends InstanceSource, DataFlow::CallCfgNode {", " private class ClassInstantiation extends InstanceSource, DataFlow::CallCfgNode {",
" override CallNode node;",
"",
" ClassInstantiation() { this = classRef().getACall() }", " ClassInstantiation() { this = classRef().getACall() }",
" }", " }",
"", "",

View File

@@ -322,8 +322,6 @@ private module Django {
/** A direct instantiation of `django.utils.datastructures.MultiValueDict`. */ /** A direct instantiation of `django.utils.datastructures.MultiValueDict`. */
private class ClassInstantiation extends InstanceSource, DataFlow::CallCfgNode { private class ClassInstantiation extends InstanceSource, DataFlow::CallCfgNode {
override CallNode node;
ClassInstantiation() { this = classRef().getACall() } ClassInstantiation() { this = classRef().getACall() }
} }