Skip to content

Commit f833fda

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

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

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

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

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

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

24+
// protected $_instanceName = null;
2425
$properties[] = [
2526
'name' => '_instanceName',
2627
'visibility' => 'protected',
@@ -68,6 +69,7 @@ protected function _getClassMethods()
6869
{
6970
$construct = $this->_getDefaultConstructorDefinition();
7071

72+
// public function create(array $data = array())
7173
$create = [
7274
'name' => 'create',
7375
'parameters' => [['name' => 'data', 'type' => 'array', 'defaultValue' => []]],

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

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

40+
// protected $_instanceName = null;
4041
$properties[] = [
4142
'name' => '_instanceName',
4243
'visibility' => 'protected',
@@ -55,6 +56,7 @@ protected function _getClassProperties()
5556
],
5657
];
5758

59+
// protected $_shared = null;
5860
$properties[] = [
5961
'name' => '_isShared',
6062
'visibility' => 'protected',

0 commit comments

Comments
 (0)