File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
java/ql/lib/semmle/code/xml Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ class AndroidActionXmlElement extends XmlElement {
286
286
/**
287
287
* A `<category>` element in an Android manifest file.
288
288
*/
289
- class AndroidCategoryXmlElement extends XMLElement {
289
+ class AndroidCategoryXmlElement extends XmlElement {
290
290
AndroidCategoryXmlElement ( ) {
291
291
this .getFile ( ) instanceof AndroidManifestXmlFile and this .getName ( ) = "category"
292
292
}
@@ -295,7 +295,7 @@ class AndroidCategoryXmlElement extends XMLElement {
295
295
* Gets the name of this category.
296
296
*/
297
297
string getCategoryName ( ) {
298
- exists ( XMLAttribute attr |
298
+ exists ( XmlAttribute attr |
299
299
attr = this .getAnAttribute ( ) and
300
300
attr .getNamespace ( ) .getPrefix ( ) = "android" and
301
301
attr .getName ( ) = "name"
You can’t perform that action at this time.
0 commit comments