Skip to content

Commit c92bfab

Browse files
committed
Issue #70.
1 parent 3bddb45 commit c92bfab

File tree

4 files changed

+2
-7
lines changed

4 files changed

+2
-7
lines changed

nodejs/scripts/jsonix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1907,7 +1907,7 @@ Jsonix.Binding.ElementUnmarshaller = Jsonix.Class({
19071907
}
19081908
});
19091909

1910-
Jsonix.Binding.ElementUnmarshaller.Simplified = Jsonix.Class(Jsonix.Binding.ElementUnmarshaller, {
1910+
Jsonix.Binding.ElementUnmarshaller.Simplified = Jsonix.Class({
19111911
convertToElementValue : function(elementValue, context, input, scope) {
19121912
var propertyName = elementValue.name.toCanonicalString(context);
19131913
var value = {};

scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Binding/ElementUnmarshaller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Jsonix.Binding.ElementUnmarshaller = Jsonix.Class({
5858
}
5959
});
6060

61-
Jsonix.Binding.ElementUnmarshaller.Simplified = Jsonix.Class(Jsonix.Binding.ElementUnmarshaller, {
61+
Jsonix.Binding.ElementUnmarshaller.Simplified = Jsonix.Class({
6262
convertToElementValue : function(elementValue, context, input, scope) {
6363
var propertyName = elementValue.name.toCanonicalString(context);
6464
var value = {};

scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Model/ElementsPropertyInfo.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,8 @@ Jsonix.Model.ElementsPropertyInfo = Jsonix.Class(Jsonix.Model.AbstractElementsPr
3535
var actualTypeInfo = context.getTypeInfoByValue(value);
3636
if (actualTypeInfo && actualTypeInfo.typeName)
3737
{
38-
console.log("Actual type info:");
39-
console.log(actualTypeInfo);
4038
for (var jndex = 0; jndex < this.elementTypeInfos.length; jndex++) {
4139
var eti = this.elementTypeInfos[jndex];
42-
console.log("Checking element type info:");
43-
console.log(eti);
4440
var ti = eti.typeInfo;
4541
// TODO Can be optimized
4642
// Find an element type info which has a type info that is a supertype of the actual type info

scripts/src/main/javascript/org/hisrc/jsonix/Jsonix/Request.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ Jsonix.Request = Jsonix
101101
transport.onreadystatechange = function() {
102102
that.handleTransport(transport, onSuccess, onFailure);
103103
};
104-
console.log('Sending.');
105104
transport.send(data);
106105
}
107106
}

0 commit comments

Comments
 (0)