Merge pull request #3 from ian-semmle/getURL

C++: Make Folder.getURL() consistent with Folder.getLocation()
This commit is contained in:
Jonas Jensen
2018-08-21 11:07:52 +02:00
committed by GitHub

View File

@@ -192,7 +192,7 @@ class Folder extends Container, @folder {
* Gets the URL of this folder.
*/
deprecated override string getURL() {
result = "folder://" + getAbsolutePath()
result = "file://" + this.getAbsolutePath() + ":0:0:0:0"
}
/**