Author: ygrego Date: 2015-05-28 10:30:04 +0000 (Thu, 28 May 2015) New Revision: 1532 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1532 Log: Deletion of "console.log()" in method "initJson". Modified: oipf/js/utils/XmlToJson.js Modified: oipf/js/utils/XmlToJson.js =================================================================== --- oipf/js/utils/XmlToJson.js 2015-05-28 10:27:49 UTC (rev 1531) +++ oipf/js/utils/XmlToJson.js 2015-05-28 10:30:04 UTC (rev 1532) @@ -26,7 +26,7 @@ if (!this.xmlDocument) { return null; } - console.log(this.xmlDocument.firstChild); + this.rootsNode = this.xmlDocument.firstChild; //We already know that document contains at least one child.