summaryrefslogtreecommitdiff
path: root/app/models/match.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-30 10:52:56 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-30 10:52:56 -0400
commitf1b2a1f25b839237ff1791ffc4586bc466409874 (patch)
tree5770fc3ed0e3145d6617db44cb29ecd96b82dc44 /app/models/match.rb
parent55f6da9556391a9676a425256a9ae1048c300e17 (diff)
remove debug code
Diffstat (limited to 'app/models/match.rb')
-rw-r--r--app/models/match.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/models/match.rb b/app/models/match.rb
index e8174ce..ed21f78 100644
--- a/app/models/match.rb
+++ b/app/models/match.rb
@@ -48,11 +48,6 @@ class Match < ActiveRecord::Base
# Delagates PUT/PATCH HTTP params to the appropriate sampling
# methods.
def handle_sampling(user, params)
- require 'pp'
- puts('>'*80)
- pp user
- pp params
- puts('<'*80)
method_classes.each do |klass|
klass.new(self).handle_user_interaction(user, params)
end