Removing abstract methods for now

Later we'll discuss having more specific FeatureParser and readFeatures type methods.
This commit is contained in:
Tim Schaub
2013-03-03 15:49:53 +01:00
parent 5535a26d4a
commit 4af32560ce

View File

@@ -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;