File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
force-app/main/default/classes/main/standard-soql Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -995,7 +995,7 @@ public virtual inherited sharing class SOQL implements Queryable {
995995 }
996996
997997 public List <AggregateResult > toAggregated () {
998- return ( List < AggregateResult >) this .toList ();
998+ return this .toList ();
999999 }
10001000
10011001 public List <AggregateResultProxy > toAggregatedProxy () {
@@ -2592,7 +2592,7 @@ public virtual inherited sharing class SOQL implements Queryable {
25922592 return this .getMockedAggregateProxy ();
25932593 }
25942594
2595- return new AggregateResultProxys ().add (( List < AggregateResult >) this .toList ()).get ();
2595+ return new AggregateResultProxys ().add (this .toList ()).get ();
25962596 }
25972597
25982598 private List <AggregateResultProxy > getMockedAggregateProxy () {
You can’t perform that action at this time.
0 commit comments