Skip to content
Merged
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 @@ -42,11 +42,11 @@ void listsInGroupMustBeIndependent() {

// Create a list proxy for each id
Map<String, ListIndex<String>> listsById = new HashMap<>();
for (String setId : elementsById.keys()) {
byte[] id = bytes(setId);
ListIndex<String> set = createInGroup(id, view);
for (String listId : elementsById.keys()) {
byte[] id = bytes(listId);
ListIndex<String> list = createInGroup(id, view);

listsById.put(setId, set);
listsById.put(listId, list);
}

// Add elements to each list in the group
Expand Down