From 3af24e6178d19b5b345efc67f68b4537865a9b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 3 May 2011 08:47:52 +0100 Subject: [PATCH] Replace hidden getter call with direct access of internal property. --- src/path/Path.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/Path.js b/src/path/Path.js index feb9f749..602e0c2c 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -279,7 +279,7 @@ var Path = this.Path = PathItem.extend({ join: function(path) { if (path) { - var segments = path.segments, + var segments = path._segments, last1 = this.getLastSegment(), last2 = path.getLastSegment(); if (last1._point.equals(last2._point))