Skip to content
Snippets Groups Projects
Commit 919a5d09 authored by buczekp's avatar buczekp
Browse files

[LMS-2336] fixed callbacks after deletion in experiment/data set detail views

SVN: 22129
parent f6523163
No related branches found
No related tags found
No related merge requests found
...@@ -146,7 +146,7 @@ abstract public class GenericDataSetViewer extends AbstractViewerWithVerticalSpl ...@@ -146,7 +146,7 @@ abstract public class GenericDataSetViewer extends AbstractViewerWithVerticalSpl
public void execute() public void execute()
{ {
new DataSetListDeletionConfirmationDialog(viewContext.getCommonViewContext(), new DataSetListDeletionConfirmationDialog(viewContext.getCommonViewContext(),
createPermanentDeletionCallback(), createPermanentDeletionCallback(), createPermanentDeletionCallback(), createDeletionCallback(),
getOriginalData()).show(); getOriginalData()).show();
} }
......
...@@ -129,7 +129,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp ...@@ -129,7 +129,7 @@ public class GenericExperimentViewer extends AbstractViewerWithVerticalSplit<Exp
{ {
new ExperimentListDeletionConfirmationDialog( new ExperimentListDeletionConfirmationDialog(
viewContext.getCommonViewContext(), createPermanentDeletionCallback(), viewContext.getCommonViewContext(), createPermanentDeletionCallback(),
createPermanentDeletionCallback(), getOriginalData()).show(); createDeletionCallback(), getOriginalData()).show();
} }
})); }));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment