From d44a9d1fcc5e5128efc4bce03274674568f4154b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 15 Dec 2015 16:46:53 -0800 Subject: [PATCH] :art: Remove parens --- atom/common/api/lib/deprecate.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom/common/api/lib/deprecate.coffee b/atom/common/api/lib/deprecate.coffee index 2481790cf816..acfc0b1d053e 100644 --- a/atom/common/api/lib/deprecate.coffee +++ b/atom/common/api/lib/deprecate.coffee @@ -54,7 +54,7 @@ deprecate.event = (emitter, oldName, newName, fn) -> # Print deprecation warning. deprecate.warn = (oldName, newName) -> - deprecate.log("#{oldName} is deprecated. Use #{newName} instead.") + deprecate.log "#{oldName} is deprecated. Use #{newName} instead." # Print deprecation message deprecate.log = (message) ->