Removed escapeXml out of CommentNode constructor params

This commit is contained in:
Patrick Steele-Idem 2015-06-05 14:46:09 -06:00
parent 91cc5e35fb
commit a1cd4384da

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
'use strict'; 'use strict';
function CommentNode(comment, escapeXml) { function CommentNode(comment) {
CommentNode.$super.call(this, 'comment'); CommentNode.$super.call(this, 'comment');
this.comment = comment; this.comment = comment;
} }