diff --git a/src/ol/parser/parser.js b/src/ol/parser/parser.js index 1c96acc41a..8d6d214147 100644 --- a/src/ol/parser/parser.js +++ b/src/ol/parser/parser.js @@ -6,16 +6,3 @@ goog.provide('ol.parser.Parser'); * @constructor */ ol.parser.Parser = function() {}; - -/** - * @param {*} data Data to deserialize. - * @return {*} Parsed data. - */ -ol.parser.Parser.prototype.read = goog.abstractMethod; - - -/** - * @param {*} obj Object to serialize. - * @return {*} Serialized object. - */ -ol.parser.Parser.prototype.write = goog.abstractMethod;