removed the puts

This commit is contained in:
ilya 2010-10-02 12:37:53 -07:00
parent 7dcde292e1
commit 304e4ad32b

View file

@ -171,9 +171,6 @@ class User
end end
def push_to_people(post, people) def push_to_people(post, people)
puts post.inspect
puts post.to_diaspora_xml
puts "Leaving push_to_people"
salmon = salmon(post) salmon = salmon(post)
people.each{|person| people.each{|person|
xml = salmon.xml_for person xml = salmon.xml_for person
@ -189,8 +186,6 @@ class User
end end
def salmon( post ) def salmon( post )
puts post.inspect
puts post.to_diaspora_xml
created_salmon = Salmon::SalmonSlap.create(self, post.to_diaspora_xml) created_salmon = Salmon::SalmonSlap.create(self, post.to_diaspora_xml)
created_salmon created_salmon
end end