Remove unused method

This commit is contained in:
Andreas Svanberg 2025-02-20 15:56:52 +01:00
parent b12d3670a5
commit 0d5bdd69ed

@ -186,8 +186,4 @@ public class ApplicationPeriod extends DomainObject {
public void addProjectType(ProjectType projectType) {
this.projectTypes.add(new ApplicationPeriodProjectType(this, projectType));
}
public void removeProjectType(ProjectType projectType) {
this.projectTypes.removeIf(next -> next.getProjectType().equals(projectType));
}
}