From ea1af437fff1aed0f71db44b7c19693ef3506059 Mon Sep 17 00:00:00 2001 From: John Dong Date: Thu, 30 Aug 2007 12:22:32 -0400 Subject: [PATCH] Remove email_voter calls; don't do anything --- app/controllers/election_controller.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/app/controllers/election_controller.rb b/app/controllers/election_controller.rb index 05a66ff..ef51f7d 100644 --- a/app/controllers/election_controller.rb +++ b/app/controllers/election_controller.rb @@ -204,7 +204,6 @@ class ElectionController < ApplicationController if incoming_voters.email == 0 new_voter.contacted = 1 elsif incoming_voters.email == 1 - email_voter( new_voter ) new_voter.contacted = 1 else new_voter.contacted = 0 @@ -223,11 +222,4 @@ class ElectionController < ApplicationController @raw_voter_list = RawVoterList.new @raw_voter_list.email = incoming_voters.email end - - def email_voter(email=nil) - if email - - end - end - end -- 2.30.2