Skip to content

Commit c1f53cd

Browse files
committed
Correct bug related to STANDARD_WITHOUT_CURRENCYISO
The STANDARD_WITHOUT_CURRENCYISO value for RecordType needed to be corrected. RecordType.getSObjectType.getDescribe().getName() was changed to RecordType.SObjectType.getDescribe().getName()
1 parent 19a123d commit c1f53cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fflib/src/classes/fflib_SObjectSelector.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public abstract with sharing class fflib_SObjectSelector
3636
private static Set<String> STANDARD_WITHOUT_CURRENCYISO = new Set<String> { AsyncApexJob.SObjectType.getDescribe().getName()
3737
, ApexClass.SObjectType.getDescribe().getName()
3838
, Attachment.SObjectType.getDescribe().getName()
39-
, RecordType.getSObjectType.getDescribe().getName() };
39+
, RecordType.SObjectType.getDescribe().getName() };
4040

4141
/**
4242
* Should this selector automatically include the FieldSet fields when building queries?

0 commit comments

Comments
 (0)