Skip to content

Commit 9d87f26

Browse files
committed
Shared: Use strictconcat in model generator printing
1 parent 7055095 commit 9d87f26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ module ModelPrintingImpl<ModelPrintingLangSig Lang> {
3737
* Computes the first columns for MaD rows used for summaries, sources and sinks.
3838
*/
3939
private string asPartialModel(Lang::Callable api) {
40-
result = concat(int i | | Lang::partialModelRow(api, i), ";" order by i) + ";"
40+
result = strictconcat(int i | | Lang::partialModelRow(api, i), ";" order by i) + ";"
4141
}
4242

4343
/**
4444
* Computes the first columns for neutral MaD rows.
4545
*/
4646
private string asPartialNeutralModel(Printing::SummaryApi api) {
47-
result = concat(int i | | Lang::partialNeutralModelRow(api, i), ";" order by i) + ";"
47+
result = strictconcat(int i | | Lang::partialNeutralModelRow(api, i), ";" order by i) + ";"
4848
}
4949

5050
/**

0 commit comments

Comments
 (0)