Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
KochTobi committed Sep 2, 2024
1 parent d599cd5 commit 360d8c4
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import life.qbic.datamanager.views.general.download.DownloadProvider;
import life.qbic.datamanager.views.notifications.CancelConfirmationDialogFactory;
import life.qbic.datamanager.views.notifications.MessageSourceNotificationFactory;
import life.qbic.datamanager.views.notifications.MessageSourceToastFactory;
import life.qbic.datamanager.views.notifications.StyledNotification;
import life.qbic.datamanager.views.notifications.SuccessMessage;
import life.qbic.datamanager.views.projects.project.experiments.ExperimentMainLayout;
Expand Down Expand Up @@ -100,7 +99,6 @@ public class SampleInformationMain extends Main implements BeforeEnterObserver {
private final Disclaimer noSamplesRegisteredDisclaimer;
private final ProjectInformationService projectInformationService;
private final CancelConfirmationDialogFactory cancelConfirmationDialogFactory;
private final MessageSourceToastFactory messageSourceToastFactory;
private final MessageSourceNotificationFactory messageSourceNotificationFactory;
private transient Context context;

Expand All @@ -113,7 +111,6 @@ public SampleInformationMain(@Autowired ExperimentInformationService experimentI
@Autowired BatchDetailsComponent batchDetailsComponent,
ProjectInformationService projectInformationService,
CancelConfirmationDialogFactory cancelConfirmationDialogFactory,
MessageSourceToastFactory messageSourceToastFactory,
MessageSourceNotificationFactory messageSourceNotificationFactory) {
this.experimentInformationService = requireNonNull(experimentInformationService,
"ExperimentInformationService cannot be null");
Expand All @@ -130,7 +127,6 @@ public SampleInformationMain(@Autowired ExperimentInformationService experimentI
this.batchDetailsComponent = requireNonNull(batchDetailsComponent,
"BatchDetailsComponent cannot be null");
this.projectInformationService = projectInformationService;
this.messageSourceToastFactory = messageSourceToastFactory;
this.cancelConfirmationDialogFactory = requireNonNull(cancelConfirmationDialogFactory,
"cancelConfirmationDialogFactory must not be null");
this.messageSourceNotificationFactory = requireNonNull(messageSourceNotificationFactory,
Expand Down

0 comments on commit 360d8c4

Please sign in to comment.