Replace hidden getter call with direct access of internal property.

This commit is contained in:
Jürg Lehni 2011-05-03 08:47:52 +01:00
parent a0e211c691
commit 3af24e6178

View file

@ -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))