We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7330781 commit 0136c75Copy full SHA for 0136c75
1 file changed
java/ql/lib/semmle/code/xml/AndroidManifest.qll
@@ -286,7 +286,7 @@ class AndroidActionXmlElement extends XmlElement {
286
/**
287
* A `<category>` element in an Android manifest file.
288
*/
289
-class AndroidCategoryXmlElement extends XMLElement {
+class AndroidCategoryXmlElement extends XmlElement {
290
AndroidCategoryXmlElement() {
291
this.getFile() instanceof AndroidManifestXmlFile and this.getName() = "category"
292
}
@@ -295,7 +295,7 @@ class AndroidCategoryXmlElement extends XMLElement {
295
* Gets the name of this category.
296
297
string getCategoryName() {
298
- exists(XMLAttribute attr |
+ exists(XmlAttribute attr |
299
attr = this.getAnAttribute() and
300
attr.getNamespace().getPrefix() = "android" and
301
attr.getName() = "name"
0 commit comments