Skip to content

Commit

Permalink
fix bad delegating calls
Browse files Browse the repository at this point in the history
  • Loading branch information
e2 committed Dec 11, 2014
1 parent f6d3e74 commit 85fd330
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/guard/compat/plugin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ def self.warning(message, options = {})
end

def self.error(message, options = {})
Guard::UI.warning(message, options)
Guard::UI.error(message, options)
end

def self.debug(message, options = {})
Guard::UI.warning(message, options)
Guard::UI.debug(message, options)
end

def self.deprecation(message, options = {})
Guard::UI.warning(message, options)
Guard::UI.deprecation(message, options)
end

def self.notify(message, options = {})
Expand Down

0 comments on commit 85fd330

Please sign in to comment.