From c64ed29b2a37009cfd6d6a5d7758b402b22f2afe Mon Sep 17 00:00:00 2001 From: Emily Aquin <36141143+eaquin1@users.noreply.github.com> Date: Wed, 6 Nov 2019 12:49:49 -0600 Subject: [PATCH] (chore: comment) removed comment at line 55 (#354) Fixes #340 --- lib/register/action.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/register/action.js b/lib/register/action.js index 668359bf..6ec7d9fe 100644 --- a/lib/register/action.js +++ b/lib/register/action.js @@ -52,8 +52,6 @@ function registerAction(options) { throw new Error('name must be a string'); if (typeof options.do !== 'function') throw new Error('do must be a function'); - // Don't throw an error for not having an undo action, - // we will throw a warning only when a user performs a clean. this.action[options.name] = { do: options.do,