File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ xhr.onload = function (e) {
29
29
console.time('JSONIX');
30
30
var jsonixResult = unmarshaller.unmarshalDocument(xhr.responseXML);
31
31
console.timeEnd('JSONIX');
32
- console.log(JSON.stringifu (jsonixResult, null, 2));
32
+ console.log(JSON.stringify (jsonixResult, null, 2));
33
33
console.time('ol3');
34
34
var ol3Result = format.read(xhr.responseXML);
35
- console.log(JSON.stringifu (ol3Result, null, 2));
35
+ console.log(JSON.stringify (ol3Result, null, 2));
36
36
console.timeEnd('ol3');
37
37
}
38
38
} else {
@@ -1702,6 +1702,7 @@ Jsonix.XML.Input = Jsonix.Class({
1702
1702
}
1703
1703
},
1704
1704
pushNS : function (node) {
1705
+ return;
1705
1706
var pindex = this.pns.length - 1;
1706
1707
var parentPnsItem = this.pns[pindex];
1707
1708
var pnsItem = Jsonix.Util.Type.isObject(parentPnsItem) ? pindex : parentPnsItem;
@@ -1750,6 +1751,7 @@ Jsonix.XML.Input = Jsonix.Class({
1750
1751
}
1751
1752
},
1752
1753
popNS : function () {
1754
+ return;
1753
1755
this.pns.pop();
1754
1756
},
1755
1757
getNamespaceURI : function (p) {
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ xhr.onload = function (e) {
28
28
console . time ( 'JSONIX' ) ;
29
29
var jsonixResult = unmarshaller . unmarshalDocument ( xhr . responseXML ) ;
30
30
console . timeEnd ( 'JSONIX' ) ;
31
- console . log ( JSON . stringifu ( jsonixResult , null , 2 ) ) ;
31
+ console . log ( JSON . stringify ( jsonixResult , null , 2 ) ) ;
32
32
console . time ( 'ol3' ) ;
33
33
var ol3Result = format . read ( xhr . responseXML ) ;
34
- console . log ( JSON . stringifu ( ol3Result , null , 2 ) ) ;
34
+ console . log ( JSON . stringify ( ol3Result , null , 2 ) ) ;
35
35
console . timeEnd ( 'ol3' ) ;
36
36
}
37
37
} else {
You can’t perform that action at this time.
0 commit comments