1

try to make naming more consistent

This commit is contained in:
Christoph
2020-03-06 20:23:39 +01:00
parent 0e1e79d51a
commit 0537f27333
11 changed files with 65 additions and 69 deletions

View File

@ -8,9 +8,11 @@ import java.util.List;
@Service
public class GroupService {
Group buildGroup(List<Event> eventList){
Group buildGroupFromEvents(List<Event> eventList){
Group newGroup = new Group();
eventList.forEach(newGroup::applyEvent);
return newGroup;
}
}