From b82ae85be2abb9f0265e410346255a7e77f6e67d Mon Sep 17 00:00:00 2001 From: Priit Tark Date: Tue, 28 Jul 2015 21:47:57 +0300 Subject: [PATCH] rubocop update --- app/mailers/contact_mailer.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/mailers/contact_mailer.rb b/app/mailers/contact_mailer.rb index 0fda0fde0..42968fe5a 100644 --- a/app/mailers/contact_mailer.rb +++ b/app/mailers/contact_mailer.rb @@ -1,5 +1,4 @@ class ContactMailer < ApplicationMailer - # rubocop:disable Metrics/MethodLength def email_updated(email, contact) return if delivery_off?(contact) @@ -24,5 +23,4 @@ class ContactMailer < ApplicationMailer logger.info "EMAIL SENDING FAILED: #{email}: #{e}" end end - # rubocop:enable Metrics/MethodLength end