X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/68663463f2ad060a95d809454e8f035dc0496cf5..7a3c81a5fa9cc1ad105457d1f4f7153df2475e7e:/Entity/Application.php

diff --git a/Entity/Application.php b/Entity/Application.php
index 2e8cca5..af4d3a9 100644
--- a/Entity/Application.php
+++ b/Entity/Application.php
@@ -31,11 +31,6 @@ class Application {
 	 */
 	private $updated;
 
-	/**
-	 * @var \Doctrine\Common\Collections\Collection
-	 */
-	private $votes;
-
 	/**
 	 * @var \Rapsys\AirBundle\Entity\Session
 	 */
@@ -46,13 +41,6 @@ class Application {
 	 */
 	private $user;
 
-	/**
-	 * Constructor
-	 */
-	public function __construct() {
-		$this->votes = new \Doctrine\Common\Collections\ArrayCollection();
-	}
-
 	/**
 	 * Get id
 	 *
@@ -150,37 +138,6 @@ class Application {
 		return $this->updated;
 	}
 
-	/**
-	 * Add vote
-	 *
-	 * @param \Rapsys\AirBundle\Entity\Vote $vote
-	 *
-	 * @return Application
-	 */
-	public function addVote(\Rapsys\AirBundle\Entity\Vote $vote) {
-		$this->votes[] = $vote;
-
-		return $this;
-	}
-
-	/**
-	 * Remove vote
-	 *
-	 * @param \Rapsys\AirBundle\Entity\Vote $vote
-	 */
-	public function removeVote(\Rapsys\AirBundle\Entity\Vote $vote) {
-		$this->votes->removeElement($vote);
-	}
-
-	/**
-	 * Get votes
-	 *
-	 * @return \Doctrine\Common\Collections\Collection
-	 */
-	public function getVotes() {
-		return $this->votes;
-	}
-
 	/**
 	 * Set session
 	 *