Skip to content

Commit 7d1cab3

Browse files
authored
Removed Unnecessary casts
Signed-off-by: Prashant Jain <[email protected]>
1 parent 7458eb6 commit 7d1cab3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

force-app/main/default/classes/main/standard-soql/SOQL_Test.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4458,7 +4458,7 @@ private class SOQL_Test {
44584458
List<Account> accounts = insertAccountsWithParents();
44594459

44604460
// Test
4461-
Map<String, List<Account>> result = (Map<String, List<Account>>) SOQL.of(Account.SObjectType)
4461+
Map<String, List<Account>> result = SOQL.of(Account.SObjectType)
44624462
.whereAre(SOQL.Filter.with(Account.ParentId).isNotNull())
44634463
.toAggregatedMap('Parent.CreatedBy', User.Id);
44644464

0 commit comments

Comments
 (0)