Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 466f75b

Browse files
Update Concepts.qll
1 parent be7c619 commit 466f75b

1 file changed

Lines changed: 0 additions & 30 deletions

File tree

python/ql/src/experimental/semmle/python/Concepts.qll

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -45,36 +45,6 @@ class CopyFile extends DataFlow::Node {
4545
DataFlow::Node getAPathArgument() { result = range.getAPathArgument() }
4646
}
4747

48-
/** Provides classes for modeling zip related APIs. */
49-
module ZipFile {
50-
/**
51-
* A data flow node for zipfile.
52-
*
53-
* Extend this class to model new APIs. If you want to refine existing API models,
54-
* extend `ZipFile` instead.
55-
*/
56-
abstract class Range extends DataFlow::Node {
57-
/**
58-
* Get the parameter value of the zip function.
59-
*/
60-
abstract DataFlow::Node getAnInput();
61-
62-
}
63-
}
64-
65-
/**
66-
* A data flow node for zip.
67-
*
68-
* Extend this class to refine existing API models. If you want to model new APIs,
69-
* extend `ZipFile::Range` instead.
70-
*/
71-
class ZipFile extends DataFlow::Node {
72-
ZipFile::Range range;
73-
74-
ZipFile() { this = range }
75-
76-
DataFlow::Node getAnInput() { result = range.getAnInput() }
77-
}
7848

7949
/** Provides classes for modeling log related APIs. */
8050
module LogOutput {

0 commit comments

Comments
 (0)