Skip to content

Commit 1e49dd2

Browse files
author
Wim Velzeboer
committed
Change private vars into projected for UnitOfWorkFactory
It doesn't really make sense to have a virtual factory class an not being able to access its ObjectTypes list in the extended class.
1 parent 785f76d commit 1e49dd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sfdx-source/apex-common/main/classes/fflib_Application.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public virtual class fflib_Application
3636
**/
3737
public virtual class UnitOfWorkFactory
3838
{
39-
private List<SObjectType> m_objectTypes;
40-
private fflib_ISObjectUnitOfWork m_mockUow;
39+
protected List<SObjectType> m_objectTypes;
40+
protected fflib_ISObjectUnitOfWork m_mockUow;
4141

4242
/**
4343
* Constructs a Unit Of Work factory

0 commit comments

Comments
 (0)