Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ protected ERXQuery() {
// Set defaults
fetchKeys = new NSMutableArray<>();
groupingKeys = new NSMutableArray<>();
groupingAttributes = new NSMutableArray<>();
orderings = new NSMutableArray<>();
refreshRefetchedObjects = false;
usesDistinct = false;
Expand Down Expand Up @@ -1275,7 +1276,6 @@ protected void computeSelectAndGroupingAttributes() {
// Initialize arrays for storing the select attributes,
// grouping attributes and sort orderings
selectAttributes = new NSMutableArray<>(20);
groupingAttributes = new NSMutableArray<>(20);

// This keeps track of EOAttribute objects used
attributesByName = new NSMutableDictionary<>();
Expand Down