rename existing getUrl predicate to getRepositoryUrl

This commit is contained in:
Erik Krogh Kristensen
2022-04-06 15:09:21 +02:00
parent 6c70cb4581
commit 563d0d6532
3 changed files with 5 additions and 5 deletions

View File

@@ -380,7 +380,7 @@ class DeclaredRepository extends PomElement {
* Gets the url for this repository. If the `url` tag is present, this will
* be the string contents of that tag.
*/
string getUrl() { result = this.getAChild("url").(PomElement).getValue() }
string getRepositoryUrl() { result = this.getAChild("url").(PomElement).getValue() }
}
/**