Sync files and make corresponding changes for other languages.

This commit is contained in:
Michael Nebel
2023-01-19 15:14:06 +01:00
parent 9cd1dc70e5
commit dc223cb82e
13 changed files with 86 additions and 86 deletions

View File

@@ -23,10 +23,10 @@ import Shared::ModelInput as ModelInput
import Shared::ModelOutput as ModelOutput
/**
* A remote flow source originating from a CSV source row.
* A remote flow source originating from a MaD source row.
*/
private class RemoteFlowSourceFromCsv extends RemoteFlowSource {
RemoteFlowSourceFromCsv() { this = ModelOutput::getASourceNode("remote").asSource() }
private class RemoteFlowSourceFromMaD extends RemoteFlowSource {
RemoteFlowSourceFromMaD() { this = ModelOutput::getASourceNode("remote").asSource() }
override string getSourceType() { result = "Remote flow" }
}