summaryrefslogtreecommitdiff
path: root/src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2026-04-07 10:15:30 +0200
committerGitHub2026-04-07 08:15:30 +0000
commit9afb438eeae0f5a5d6cf63afdaf4b5df8b06a895 (patch)
tree48fec966a5e2f65fbcc2d1e69cc97f8f79ca7cc9 /src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java
parent149b33a18dcdfa7500e7d66b5774b2dca14b6f9c (diff)
refactor: remove deprecated MtbService (#260)
Diffstat (limited to 'src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java')
-rw-r--r--src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java b/src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java
index f52fa29..bb6619f 100644
--- a/src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java
+++ b/src/main/java/dev/dnpm/oshelper/config/PluginConfiguration.java
@@ -19,6 +19,7 @@
package dev.dnpm.oshelper.config;
+import de.itc.onkostar.api.IOnkostarApi;
import dev.dnpm.oshelper.atc.services.AgentCodeService;
import dev.dnpm.oshelper.atc.services.CsvAgentCodeService;
import dev.dnpm.oshelper.atc.services.OnkostarAgentCodeService;
@@ -27,14 +28,11 @@ import dev.dnpm.oshelper.services.*;
import dev.dnpm.oshelper.services.consent.ConsentManagerServiceFactory;
import dev.dnpm.oshelper.services.molekulargenetik.MolekulargenetikFormService;
import dev.dnpm.oshelper.services.molekulargenetik.OsMolekulargenetikFormService;
-import dev.dnpm.oshelper.services.mtb.DefaultMtbService;
-import dev.dnpm.oshelper.services.mtb.MtbService;
import dev.dnpm.oshelper.services.strahlentherapie.DefaultStrahlentherapieService;
import dev.dnpm.oshelper.services.strahlentherapie.StrahlentherapieService;
import dev.dnpm.oshelper.services.systemtherapie.DefaultSystemtherapieService;
import dev.dnpm.oshelper.services.systemtherapie.SystemtherapieService;
import dev.dnpm.oshelper.services.therapieplan.TherapieplanServiceFactory;
-import de.itc.onkostar.api.IOnkostarApi;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@@ -68,11 +66,6 @@ public class PluginConfiguration {
}
@Bean
- public MtbService mtbService(final IOnkostarApi onkostarApi) {
- return new DefaultMtbService(onkostarApi);
- }
-
- @Bean
public SystemtherapieService systemtherapieService(
final IOnkostarApi onkostarApi,
final SettingsService settingsService