Skip to content

Commit 15590ee

Browse files
authored
Merge pull request apex-enterprise-patterns#391 from andrewhun/master
Amending Comments in fflib_SObjects
2 parents 45ab65b + 7f275e5 commit 15590ee

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public virtual class fflib_SObjects
154154
}
155155

156156
/**
157-
* @param sObjectFields The Schema.SObjectField's to check their value for a Blank value
157+
* @param sObjectFields The Schema.SObjectFields to check their value for a Blank value
158158
*
159159
* @return A list with only the SObjects where the at least one given sObjectField value is either null or '')
160160
*/
@@ -176,9 +176,9 @@ public virtual class fflib_SObjects
176176
}
177177

178178
/**
179-
* @param sObjectFields The Schema.SObjectField's to check their value for a Blank value
179+
* @param sObjectFields The Schema.SObjectFields to check their value for a Blank value
180180
*
181-
* @return A list with only the SObjects where the at least one given sObjectField value is either null or ''
181+
* @return A list with only the SObjects where all given sObjectField values are either null or ''
182182
*/
183183
protected virtual List<SObject> getRecordsWithAllBlankFieldValues(Set<Schema.SObjectField> sObjectFields)
184184
{
@@ -212,7 +212,7 @@ public virtual class fflib_SObjects
212212
}
213213

214214
/**
215-
* @param sObjectFields The Schema.SObjectField's to check their value for a Non-Blank value
215+
* @param sObjectFields The Schema.SObjectFields to check their value for a Non-Blank value
216216
*
217217
* @return A list with only the SObjects where the at least one given sObjectField value not null or ''
218218
*/
@@ -234,9 +234,9 @@ public virtual class fflib_SObjects
234234
}
235235

236236
/**
237-
* @param sObjectFields The Schema.SObjectField's to check their value for a Non-Blank value
237+
* @param sObjectFields The Schema.SObjectFields to check their value for a Non-Blank value
238238
*
239-
* @return A list with only the SObjects where the at least one given sObjectField value is not null or ''
239+
* @return A list with only the SObjects where all given sObjectField values are not null or ''
240240
*/
241241
protected virtual List<SObject> getRecordsWithAllNotBlankFieldValues(Set<Schema.SObjectField> sObjectFields)
242242
{

0 commit comments

Comments
 (0)