Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pgajek2 committed Sep 14, 2023
1 parent e546fec commit 88029f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion force-app/main/default/classes/SOQL.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,7 @@ public virtual inherited sharing class SOQL implements Queryable {
}

public override String toString() {
return 'GROUP BY ' + String.format(groupByFunction, new List<String> { String.join(groupByFields, ', ') });
return 'GROUP BY ' + String.format(groupByFunction, new List<String>{ String.join(groupByFields, ', ') });
}
}

Expand Down

0 comments on commit 88029f8

Please sign in to comment.