diff --git a/src/path/Segment.js b/src/path/Segment.js index ab6c63dc..0f1c0bbb 100644 --- a/src/path/Segment.js +++ b/src/path/Segment.js @@ -101,16 +101,6 @@ var Segment = this.Segment = Base.extend({ return null; }, - // TODO: - // getCurve: function() { - // if (this._segments && this._segments.path) { - // var curves = this._segments.path.getCurves(); - // // The curves list handles closing curves, so the curves.size - // // is adjusted accordingly. just check to be in the boundaries here: - // return index < curves.length ? curves[index] : null; - // } - // }, - getNext: function() { return this._path && this._path._segments[this.getIndex() + 1] || null; }, diff --git a/test/tests/PlacedSymbol.js b/test/tests/PlacedSymbol.js index 5fdb20e7..a6aa3ab3 100644 --- a/test/tests/PlacedSymbol.js +++ b/test/tests/PlacedSymbol.js @@ -27,4 +27,4 @@ test('placedSymbol bounds', function() { compareRectangles(placedSymbol.bounds, { x: -25.50049, y: -25.50049, width: 51.00098, height: 51.00098 }, 'Bounds after rotation.'); -}); \ No newline at end of file +});