From 3dd7eb58888eb44d56de81f8fde284cd9f3dc64e Mon Sep 17 00:00:00 2001
From: Marco Pivetta <ocramius@gmail.com>
Date: Sun, 8 Oct 2017 10:57:33 +0200
Subject: [PATCH] #6759 removing outdated comment as per @alcaeus' review

Ref: https://github.com/doctrine/doctrine2/pull/6760#discussion_r143347881
---
 lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php b/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php
index 6490d0bae..6152c4176 100644
--- a/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php
+++ b/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php
@@ -802,8 +802,6 @@ class BasicEntityPersister implements EntityPersister
                 );
             }
 
-            // unset the old value and set the new sql aliased value here. By definition
-            // unset($identifier[$targetKeyColumn] works here with how UnitOfWork::createEntity() calls this method.
             $computedIdentifier[$targetClass->getFieldForColumn($targetKeyColumn)] =
                 $sourceClass->reflFields[$sourceClass->fieldNames[$sourceKeyColumn]]->getValue($sourceEntity);
         }