Skip to content

Commit 0136c75

Browse files
Jami CogswellJami Cogswell
authored andcommitted
update XML to Xml due to recent deprecation
1 parent 7330781 commit 0136c75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/lib/semmle/code/xml/AndroidManifest.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)