Changeset 2968
- Timestamp:
- 04/02/07 06:52:10 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Feature/Vector.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Feature/Vector.js
r2949 r2968 55 55 }, 56 56 57 57 /** 58 * 59 */ 60 destroy: function() { 61 this.geometry = null; 62 OpenLayers.Feature.prototype.destroy.apply(this, arguments); 63 }, 64 58 65 /** 59 66 * @returns An exact clone of this OpenLayers.Feature … … 72 79 73 80 /** 74 *75 */76 destroy: function() {77 this.geometry = null;78 OpenLayers.Feature.prototype.destroy.apply(this, arguments);79 },80 81 /**82 81 * HACK - we need to rewrite this for non-point geometry 83 82 * @returns null - we need to rewrite this for non-point geometry … … 236 235 this.state = state; 237 236 } 238 },239 240 destroy: function() {241 242 237 }, 243 238
