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.
2 parents f0d5c9f + 139fb02 commit dff18a3Copy full SHA for dff18a3
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) ))
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