Skip to content

Commit 01c3c71

Browse files
committed
Removed commented code from lib files
1 parent 6c88c58 commit 01c3c71

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

lib/internal/Magento/Framework/Code/Generator/EntityAbstract.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ protected function _getDefaultResultClassName($modelClassName)
183183
*/
184184
protected function _getClassProperties()
185185
{
186-
// protected $_objectManager = null;
187186
$objectManager = [
188187
'name' => '_objectManager',
189188
'visibility' => 'protected',

lib/internal/Magento/Framework/ObjectManager/Code/Generator/Factory.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ protected function _getClassProperties()
2121
{
2222
$properties = parent::_getClassProperties();
2323

24-
// protected $_instanceName = null;
2524
$properties[] = [
2625
'name' => '_instanceName',
2726
'visibility' => 'protected',
@@ -69,7 +68,6 @@ protected function _getClassMethods()
6968
{
7069
$construct = $this->_getDefaultConstructorDefinition();
7170

72-
// public function create(array $data = array())
7371
$create = [
7472
'name' => 'create',
7573
'parameters' => [['name' => 'data', 'type' => 'array', 'defaultValue' => []]],

lib/internal/Magento/Framework/ObjectManager/Code/Generator/Proxy.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ protected function _getClassProperties()
3737
{
3838
$properties = parent::_getClassProperties();
3939

40-
// protected $_instanceName = null;
4140
$properties[] = [
4241
'name' => '_instanceName',
4342
'visibility' => 'protected',
@@ -56,7 +55,6 @@ protected function _getClassProperties()
5655
],
5756
];
5857

59-
// protected $_shared = null;
6058
$properties[] = [
6159
'name' => '_isShared',
6260
'visibility' => 'protected',

0 commit comments

Comments
 (0)