Commit c647835b authored by Thomas Huster's avatar Thomas Huster
Browse files

[17232] never try to init list with null value in AppointmentService

parent 3c1f49fe
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -276,6 +276,7 @@ public class AppointmentService implements IAppointmentService {
	
	@Override
	public List<String> getTypes(){
		return new ArrayList<String>(iConfigService.getAsList(AG_TERMINTYPEN, null));
		return new ArrayList<String>(
			iConfigService.getAsList(AG_TERMINTYPEN, Collections.emptyList()));
	}
}