Skip to content

Commit a2fe678

Browse files
author
Max Schaefer
committed
C++/Java/JavaScript/Python: Unify imports in XML.qll.
1 parent 49abffa commit a2fe678

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • cpp/ql/src/semmle/code/cpp
  • javascript/ql/src/semmle/javascript
  • java/ql/src/semmle/code/xml
  • python/ql/src/semmle/python/xml

cpp/ql/src/semmle/code/cpp/XML.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Provides classes and predicates for working with XML files and their content.
33
*/
44

5-
import semmle.code.cpp.Location
5+
import semmle.files.FileSystem
66

77
/** An XML element that has a location. */
88
abstract class XMLLocatable extends @xmllocatable {

java/ql/src/semmle/code/xml/XML.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Provides classes and predicates for working with XML files and their content.
33
*/
44

5-
import semmle.code.Location
5+
import semmle.files.FileSystem
66

77
/** An XML element that has a location. */
88
abstract class XMLLocatable extends @xmllocatable {

javascript/ql/src/semmle/javascript/XML.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Provides classes and predicates for working with XML files and their content.
33
*/
44

5-
import javascript
5+
import semmle.files.FileSystem
66

77
/** An XML element that has a location. */
88
abstract class XMLLocatable extends @xmllocatable {

python/ql/src/semmle/python/xml/XML.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* A library for working with XML files and their content.
33
*/
44

5-
import semmle.python.Files
5+
import semmle.files.FileSystem
66

77
/** An XML element that has a location. */
88
abstract class XMLLocatable extends @xmllocatable {

0 commit comments

Comments
 (0)