We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be7d342 commit 139fb02Copy full SHA for 139fb02
sfdx-source/apex-common/main/classes/fflib_SObjectDescribe.cls
@@ -77,8 +77,6 @@ public class fflib_SObjectDescribe {
77
private fflib_SObjectDescribe(Schema.SObjectType token){
78
if(token == null)
79
throw new InvalidDescribeException('Invalid SObject type: null');
80
- if(instanceCache.containsKey( String.valueOf(token).toLowerCase() ))
81
- throw new DuplicateDescribeException(token + ' is already in the describe cache');
82
this.token = token;
83
instanceCache.put( String.valueOf(token).toLowerCase() , this);
84
}
0 commit comments