Move checkedout? method to the Rentable superclass
[cs356-p2-videostore.git] / app / models / game.rb
index 4c5d38c..0ca782b 100644 (file)
@@ -2,7 +2,4 @@ class Game < Rentable
   validates_presence_of :game_genre
   validates_presence_of :platform
 
-  def checkedout?
-    return Coitem.find_by_id(self.id) ? true : false
-  end
 end