Activity alias: formatting changes suggested by Actions

This commit is contained in:
Ed Minnix
2022-10-18 12:02:34 -04:00
parent ec6c421f91
commit 4620db0fe9
2 changed files with 2 additions and 3 deletions

View File

@@ -151,7 +151,7 @@ class AndroidActivityAliasXmlElement extends AndroidComponentXmlElement {
exists(AndroidXmlAttribute attr |
attr = this.getAnAttribute() and attr.getName() = "targetActivity"
|
result = getResolvedIdentifier(attr)
result = this.getResolvedIdentifier(attr)
)
}
@@ -319,7 +319,7 @@ class AndroidComponentXmlElement extends XmlElement {
*/
string getResolvedComponentName() {
exists(AndroidXmlAttribute attr | attr = this.getAnAttribute() and attr.getName() = "name" |
result = getResolvedIdentifier(attr)
result = this.getResolvedIdentifier(attr)
)
}

View File

@@ -1,5 +1,4 @@
import java
import semmle.code.xml.AndroidManifest
from AndroidActivityAliasXmlElement alias