Remove checksum interface

This commit is contained in:
Tim Schaub
2016-01-04 21:58:03 -07:00
parent 2f1975636a
commit aeffd48ccb
5 changed files with 4 additions and 28 deletions

View File

@@ -3,7 +3,6 @@ goog.provide('ol.style.Stroke');
goog.require('goog.crypt');
goog.require('goog.crypt.Md5');
goog.require('ol.color');
goog.require('ol.structs.IHasChecksum');
@@ -16,7 +15,6 @@ goog.require('ol.structs.IHasChecksum');
*
* @constructor
* @param {olx.style.StrokeOptions=} opt_options Options.
* @implements {ol.structs.IHasChecksum}
* @api
*/
ol.style.Stroke = function(opt_options) {
@@ -200,7 +198,7 @@ ol.style.Stroke.prototype.setWidth = function(width) {
/**
* @inheritDoc
* @return {string} The checksum.
*/
ol.style.Stroke.prototype.getChecksum = function() {
if (this.checksum_ === undefined) {