commit | 0e47415993b0ccfe6334c36b75d35f0c859c8f25 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Wed Jul 31 18:30:37 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Wed Jul 31 18:30:37 2013 -0700 |
tree | 3d882ee5eb2171908671c93cae7ebf32c4d90b97 | |
parent | 1b415b883a924b0f334727354d2262d488538615 [diff] [blame] |
Added WireFormat class and make BinaryXmlWireFormat inherit from it.
diff --git a/js/encoding/BinaryXmlWireFormat.js b/js/encoding/BinaryXmlWireFormat.js index 3120d8c..f294fb0 100644 --- a/js/encoding/BinaryXmlWireFormat.js +++ b/js/encoding/BinaryXmlWireFormat.js
@@ -9,6 +9,8 @@ * @constructor */ var BinaryXmlWireFormat = function BinaryXmlWireFormat() { + // Inherit from WireFormat. + WireFormat.call(this); }; /**