Skip to content

Commit 798dfb9

Browse files
change buildQueryById access modifier to protected
change buildQueryById to protected to allow overriding with sharing
1 parent 83ac48b commit 798dfb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ public abstract with sharing class fflib_SObjectSelector
429429
/**
430430
* Constructs the default SOQL query for this selector, see selectSObjectsById and queryLocatorById
431431
**/
432-
private String buildQuerySObjectById()
432+
protected String buildQuerySObjectById()
433433
{
434434
return newQueryFactory().setCondition('id in :idSet').toSOQL();
435435
}

0 commit comments

Comments
 (0)