Skip to content

Commit 467a5af

Browse files
committed
Merge pull request #8 from financialforcedev/defect/accounts-domain-wrong-sobjecttype
Corrected incorrect sobject type in Accounts factory method
2 parents b6fbe13 + 9f706e4 commit 467a5af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fflib-sample-code/src/classes/Accounts.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
public with sharing class Accounts extends fflib_SObjectDomain
2828
implements IAccounts
2929
{
30-
public static IAccounts newInstance(List<Opportunity> sObjectList)
30+
public static IAccounts newInstance(List<Account> sObjectList)
3131
{
3232
return (IAccounts) Application.Domain.newInstance(sObjectList);
3333
}

0 commit comments

Comments
 (0)