Remove 2nd redundant definition of Gradient#getStops().

This commit is contained in:
Jürg Lehni 2011-03-03 17:26:30 +00:00
parent 7e52355f93
commit 0efc23b25c

View file

@ -12,9 +12,5 @@ var Gradient = Base.extend({
if (stops.length < 2)
throw Error('Gradient stop list needs to contain at least two stops.');
this._stops = stops;
},
getStops: function() {
return this._stops;
}
});