Wrong method!

Commit
facc2d355bacea3bf6a9433165232339c3c7ff30
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
src/MyFitnessTracker/MFTSQLite3Database.class.st
index 13387549..d90c3e5a 100644..100644
@@ -142,12 +142,12 @@
142 142 allSets := self
143 143 getAllSetsForUser: aMFTUser
144 144 connection: openConnection.
145 Removed: (allSets groupedBy: #workoutId) keysAndAllValuesDo: [
145 Added: (allSets groupedBy: #workoutId) keysAndValuesDo: [
146 146 :workoutId
147 147 :workoutSets |
148 148 | workout |
149 149 workout := workouts detect: [ :w | w id = workoutId ].
150 Removed: (workoutSets groupedBy: #groupId) keysAndAllValuesDo: [ :groupId :sets |
150 Added: (workoutSets groupedBy: #groupId) keysAndValuesDo: [ :groupId :sets |
151 151 workout addSetGroup:
152 152 (MFTSetGroup new sets:
153 153 (sets collect: [ :set | set groupId: groupId ])) ] ].