Skip to content

Commit 54f0eed

Browse files
committed
Shared: Rename 'asLiftedTaintModel' to 'asLiftedModel'.
1 parent d5bc95d commit 54f0eed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared/mad/codeql/mad/modelgenerator/internal/ModelGeneratorImpl.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ module MakeModelGeneratorFactory<
562562
private string captureThroughFlow(DataFlowSummaryTargetApi api, boolean preservesValue) {
563563
exists(string input, string output |
564564
preservesValue = max(boolean b | captureThroughFlow0(api, _, input, _, output, b)) and
565-
result = ModelPrintingSummary::asLiftedTaintModel(api, input, output, preservesValue)
565+
result = ModelPrintingSummary::asLiftedModel(api, input, output, preservesValue)
566566
)
567567
}
568568

shared/mad/codeql/mad/modelgenerator/internal/ModelPrinting.qll

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ module ModelPrintingImpl<ModelPrintingLangSig Lang> {
9797
* Gets the lifted taint summary model for `api` with `input` and `output`.
9898
*/
9999
bindingset[input, output, preservesValue]
100-
string asLiftedTaintModel(
100+
string asLiftedModel(
101101
Printing::SummaryApi api, string input, string output, boolean preservesValue
102102
) {
103103
result = asModel(api, input, output, preservesValue, true)

0 commit comments

Comments
 (0)