1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-02 01:02:55 +00:00

chore: change constructor visibility

This commit is contained in:
2024-09-17 16:46:00 +02:00
parent 7089ffed1a
commit 1999b1bb22

View File

@ -13,7 +13,7 @@ public abstract class AbstractTherapieplanService implements TherapieplanService
protected final FormService formService;
public AbstractTherapieplanService(final IOnkostarApi onkostarApi, final FormService formService) {
protected AbstractTherapieplanService(final IOnkostarApi onkostarApi, final FormService formService) {
this.onkostarApi = onkostarApi;
this.formService = formService;
}