In the delete() method of the EntityStorageBase, there is a small error in a code comment.
if (!$entities) {
// If no IDs or invalid IDs were passed, do nothing.
return;
}
Actually, the IDs of the array passed don't really matter. The following should be more accurate:
if (!$entities) {
// If no entities were passed, do nothing.
return;
}
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | entitystoragebase_code_comment_update-2349839-1.patch | 545 bytes | seanb |
Comments
Comment #1
seanbPatch is attached.
Comment #2
pascalli commentedHi seanB,
Reviewed patch on local and comment line is updated as expected.
Bye for now.
Comment #3
jelle_sSimple & straightforward. Assuming patch will be green (should be since there are no actual code changes)
Comment #4
oenie commentedfixing the amsterdam sprint tag to amsterdam2014
Comment #5
alexpottCommitted 4fc159c and pushed to 8.0.x. Thanks!