20
20
import jakarta .enterprise .context .RequestScoped ;
21
21
import jakarta .inject .Inject ;
22
22
import no .nav .k9 .felles .log .mdc .MdcExtendedLogContext ;
23
- import no .nav .k9 .prosesstask .api .ProsessTaskData ;
24
- import no .nav .k9 .prosesstask .impl .ProsessTaskTjenesteImpl ;
25
23
import no .nav .ung .kodeverk .behandling .BehandlingResultatType ;
26
24
import no .nav .ung .kodeverk .behandling .BehandlingStatus ;
27
25
import no .nav .ung .kodeverk .behandling .BehandlingStegStatus ;
@@ -82,7 +80,6 @@ public class BehandlingskontrollTjenesteImpl implements BehandlingskontrollTjene
82
80
*/
83
81
private AtomicBoolean nøstetProsseringGuard = new AtomicBoolean ();
84
82
private BehandlingskontrollServiceProvider serviceProvider ;
85
- private ProsessTaskTjenesteImpl prosessTaskTjenesteImpl ;
86
83
87
84
BehandlingskontrollTjenesteImpl () {
88
85
// for CDI proxy
@@ -92,7 +89,7 @@ public class BehandlingskontrollTjenesteImpl implements BehandlingskontrollTjene
92
89
* SE KOMMENTAR ØVERST
93
90
*/
94
91
@ Inject
95
- public BehandlingskontrollTjenesteImpl (BehandlingskontrollServiceProvider serviceProvider , ProsessTaskTjenesteImpl prosessTaskTjenesteImpl ) {
92
+ public BehandlingskontrollTjenesteImpl (BehandlingskontrollServiceProvider serviceProvider ) {
96
93
97
94
this .serviceProvider = serviceProvider ;
98
95
this .behandlingRepository = serviceProvider .getBehandlingRepository ();
@@ -101,7 +98,6 @@ public BehandlingskontrollTjenesteImpl(BehandlingskontrollServiceProvider servic
101
98
this .behandlingStegKonfigurasjon = new BehandlingStegKonfigurasjon (EnumSet .allOf (BehandlingStegStatus .class ));
102
99
this .aksjonspunktKontrollRepository = serviceProvider .getAksjonspunktKontrollRepository ();
103
100
this .eventPubliserer = serviceProvider .getEventPubliserer ();
104
- this .prosessTaskTjenesteImpl = prosessTaskTjenesteImpl ;
105
101
}
106
102
107
103
@ Override
0 commit comments