File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
test/library-tests/frameworks/android/activity-alias Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ class AndroidActivityAliasXmlElement extends AndroidComponentXmlElement {
151
151
exists ( AndroidXmlAttribute attr |
152
152
attr = this .getAnAttribute ( ) and attr .getName ( ) = "targetActivity"
153
153
|
154
- result = getResolvedIdentifier ( attr )
154
+ result = this . getResolvedIdentifier ( attr )
155
155
)
156
156
}
157
157
@@ -319,7 +319,7 @@ class AndroidComponentXmlElement extends XmlElement {
319
319
*/
320
320
string getResolvedComponentName ( ) {
321
321
exists ( AndroidXmlAttribute attr | attr = this .getAnAttribute ( ) and attr .getName ( ) = "name" |
322
- result = getResolvedIdentifier ( attr )
322
+ result = this . getResolvedIdentifier ( attr )
323
323
)
324
324
}
325
325
Original file line number Diff line number Diff line change 1
1
import java
2
-
3
2
import semmle.code.xml.AndroidManifest
4
3
5
4
from AndroidActivityAliasXmlElement alias
You can’t perform that action at this time.
0 commit comments