From 0efc23b25cbf3a78001554823b0893e0ea7d7fe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 3 Mar 2011 17:26:30 +0000 Subject: [PATCH] Remove 2nd redundant definition of Gradient#getStops(). --- src/color/Gradient.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/color/Gradient.js b/src/color/Gradient.js index 199eb8ac..7adb0073 100644 --- a/src/color/Gradient.js +++ b/src/color/Gradient.js @@ -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; } });