@@ -32,9 +32,6 @@ class XmlLocatable extends @xmllocatable, TXmlLocatable {
3232 string toString ( ) { none ( ) } // overridden in subclasses
3333}
3434
35- /** DEPRECATED: Alias for XmlLocatable */
36- deprecated class XMLLocatable = XmlLocatable ;
37-
3835/**
3936 * An `XmlParent` is either an `XmlElement` or an `XmlFile`,
4037 * both of which can contain other elements.
@@ -95,9 +92,6 @@ class XmlParent extends @xmlparent {
9592 string toString ( ) { result = this .getName ( ) }
9693}
9794
98- /** DEPRECATED: Alias for XmlParent */
99- deprecated class XMLParent = XmlParent ;
100-
10195/** An XML file. */
10296class XmlFile extends XmlParent , File {
10397 XmlFile ( ) { xmlEncoding ( this , _) }
@@ -119,14 +113,8 @@ class XmlFile extends XmlParent, File {
119113
120114 /** Gets a DTD associated with this XML file. */
121115 XmlDtd getADtd ( ) { xmlDTDs ( result , _, _, _, this ) }
122-
123- /** DEPRECATED: Alias for getADtd */
124- deprecated XmlDtd getADTD ( ) { result = this .getADtd ( ) }
125116}
126117
127- /** DEPRECATED: Alias for XmlFile */
128- deprecated class XMLFile = XmlFile ;
129-
130118/**
131119 * An XML document type definition (DTD).
132120 *
@@ -163,9 +151,6 @@ class XmlDtd extends XmlLocatable, @xmldtd {
163151 }
164152}
165153
166- /** DEPRECATED: Alias for XmlDtd */
167- deprecated class XMLDTD = XmlDtd ;
168-
169154/**
170155 * An XML element in an XML file.
171156 *
@@ -221,9 +206,6 @@ class XmlElement extends @xmlelement, XmlParent, XmlLocatable {
221206 override string toString ( ) { result = this .getName ( ) }
222207}
223208
224- /** DEPRECATED: Alias for XmlElement */
225- deprecated class XMLElement = XmlElement ;
226-
227209/**
228210 * An attribute that occurs inside an XML element.
229211 *
@@ -254,9 +236,6 @@ class XmlAttribute extends @xmlattribute, XmlLocatable {
254236 override string toString ( ) { result = this .getName ( ) + "=" + this .getValue ( ) }
255237}
256238
257- /** DEPRECATED: Alias for XmlAttribute */
258- deprecated class XMLAttribute = XmlAttribute ;
259-
260239/**
261240 * A namespace used in an XML file.
262241 *
@@ -273,9 +252,6 @@ class XmlNamespace extends XmlLocatable, @xmlnamespace {
273252 /** Gets the URI of this namespace. */
274253 string getUri ( ) { xmlNs ( this , _, result , _) }
275254
276- /** DEPRECATED: Alias for getUri */
277- deprecated string getURI ( ) { result = this .getUri ( ) }
278-
279255 /** Holds if this namespace has no prefix. */
280256 predicate isDefault ( ) { this .getPrefix ( ) = "" }
281257
@@ -286,9 +262,6 @@ class XmlNamespace extends XmlLocatable, @xmlnamespace {
286262 }
287263}
288264
289- /** DEPRECATED: Alias for XmlNamespace */
290- deprecated class XMLNamespace = XmlNamespace ;
291-
292265/**
293266 * A comment in an XML file.
294267 *
@@ -309,9 +282,6 @@ class XmlComment extends @xmlcomment, XmlLocatable {
309282 override string toString ( ) { result = this .getText ( ) }
310283}
311284
312- /** DEPRECATED: Alias for XmlComment */
313- deprecated class XMLComment = XmlComment ;
314-
315285/**
316286 * A sequence of characters that occurs between opening and
317287 * closing tags of an XML element, excluding other elements.
@@ -335,6 +305,3 @@ class XmlCharacters extends @xmlcharacters, XmlLocatable {
335305 /** Gets a printable representation of this XML character sequence. */
336306 override string toString ( ) { result = this .getCharacters ( ) }
337307}
338-
339- /** DEPRECATED: Alias for XmlCharacters */
340- deprecated class XMLCharacters = XmlCharacters ;
0 commit comments