:art: Remove parens
authorKevin Sawicki <kevinsawicki@gmail.com>
Wed, 16 Dec 2015 00:46:53 +0000 (16:46 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Wed, 16 Dec 2015 00:46:53 +0000 (16:46 -0800)
atom/common/api/lib/deprecate.coffee

index 2481790..acfc0b1 100644 (file)
@@ -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) ->