]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - src/websites/efukt.rb
Factored out the Youtube implementation of get_page_data into the Website superclass.
[dead/whatever-dl.git] / src / websites / efukt.rb
index f4cc58d663b236af75cf8072c0025dbb58259714..4d5d397d24e1fa093927d1fce749aae228494f57 100644 (file)
@@ -71,15 +71,4 @@ class Efukt < Website
   end
 
 
-  # Just make a normal HTTP "get" request.
-  def get_page_data(url)
-    uri = URI.parse(url)
-    
-    response = Net::HTTP.start(uri.host, uri.port) do |http|
-      http.get(uri.path)
-    end
-    
-    return response.body
-  end
-
 end