| 1 | package com.seshira.events.event.domain.models; | |
| 2 | ||
| 3 | import java.util.UUID; | |
| 4 | ||
| 5 | public class InterventionEducationEvent extends EducationEvent { | |
| 6 | public InterventionEducationEvent(UUID id, String name) { | |
| 7 | super(id, name); | |
| 8 |
1
1. <init> : removed call to com/seshira/events/event/domain/models/InterventionEducationEvent::setAdditionalType → SURVIVED |
this.setAdditionalType(EventAdditionalType.INTERVENTION); |
| 9 | } | |
| 10 | } | |
Mutations | ||
| 8 |
1.1 |