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 {
286286/**
287287 * A `<category>` element in an Android manifest file.
288288 */
289- class AndroidCategoryXmlElement extends XMLElement {
289+ class AndroidCategoryXmlElement extends XmlElement {
290290 AndroidCategoryXmlElement ( ) {
291291 this .getFile ( ) instanceof AndroidManifestXmlFile and this .getName ( ) = "category"
292292 }
@@ -295,7 +295,7 @@ class AndroidCategoryXmlElement extends XMLElement {
295295 * Gets the name of this category.
296296 */
297297 string getCategoryName ( ) {
298- exists ( XMLAttribute attr |
298+ exists ( XmlAttribute attr |
299299 attr = this .getAnAttribute ( ) and
300300 attr .getNamespace ( ) .getPrefix ( ) = "android" and
301301 attr .getName ( ) = "name"
You can’t perform that action at this time.
0 commit comments