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