From 3d64b017c50d7e8edfc33218f2f27321762ca253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 15 Feb 2011 22:56:53 +0000 Subject: [PATCH] Remove comment about having Point.read() return consumed arguments indices, as after analysing the situation it seem too complex to imeplement easly: Point.read internally relies on Point#initialize for all the heavy lifting, and this would have to report back how many indices were consumed somehow... --- src/path/Path.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/path/Path.js b/src/path/Path.js index 3e330780..a360944c 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -90,7 +90,6 @@ Path = PathItem.extend(new function() { Circle: function() { var center, radius; - // TODO: Have Point.read() return consumed index somehow? if (arguments.length == 3) { center = new Point(arguments[0], arguments[1]); radius = arguments[2];