From b483832a80ef40f28645fa2688b42dbeeea115d7 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 18 Feb 2019 14:14:36 -0500 Subject: [PATCH] Remove unused parameter --- modules/modes/draw_line.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/modes/draw_line.js b/modules/modes/draw_line.js index 9c6fc0109..354c5cdfa 100644 --- a/modules/modes/draw_line.js +++ b/modules/modes/draw_line.js @@ -17,7 +17,7 @@ export function modeDrawLine(context, wayID, startGraph, affix, continuing) { var index = (affix === 'prefix') ? 0 : undefined; var headID = (affix === 'prefix') ? way.first() : way.last(); - behavior = behaviorDrawWay(context, wayID, index, mode, startGraph, continuing) + behavior = behaviorDrawWay(context, wayID, index, mode, startGraph) .tail(t('modes.draw_line.tail')); var addNode = behavior.addNode;