aboutsummaryrefslogtreecommitdiff
path: root/lib/mauve/configuration_builders/notification_method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mauve/configuration_builders/notification_method.rb')
-rw-r--r--lib/mauve/configuration_builders/notification_method.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/mauve/configuration_builders/notification_method.rb b/lib/mauve/configuration_builders/notification_method.rb
index 3f9283e..7951dee 100644
--- a/lib/mauve/configuration_builders/notification_method.rb
+++ b/lib/mauve/configuration_builders/notification_method.rb
@@ -40,18 +40,6 @@ module Mauve
result.extend(Mauve::Notifiers::Debug)
end
- # This catches all methods available for a provider, as needed.
- #
- # Missing methods / bad arguments etc. are caught in the
- # ObjectBuilder#parse method, via NoMethodError.
- #
- def method_missing(name, value=nil)
- if value
- result.send("#{name}=".to_sym, value)
- else
- result.send(name.to_sym)
- end
- end
end
end