diff --git a/editor/js/state.js b/editor/js/state.js index 490d3b6bf8ce310679d010123b9089d12c0f977a..1672b394d06a8a6b6c04fdc8a8160658b3a95719 100644 --- a/editor/js/state.js +++ b/editor/js/state.js @@ -2,7 +2,6 @@ import Tool from "./tools/tool"; import UndoTool from "./tools/undotool"; import RedoTool from "./tools/redotool"; import SelectTool from "./tools/selecttool"; -import CollectTool from "./tools/collecttool"; import DeleteTool from "./tools/deletetool"; import AddNodeTool from "./tools/addnodetool"; import ConnectTool from "./tools/connecttool"; @@ -16,7 +15,6 @@ export const TOOLS = { undo: new UndoTool("undo"), redo: new RedoTool("redo"), select: new SelectTool("select"), - collect: new CollectTool("collect"), delete: new DeleteTool("delete"), addnode: new AddNodeTool("addnode"), connect: new ConnectTool("connect"),