Project

General

Profile

« Previous | Next » 

Revision 49d3c2dd

Added by Katja Luther over 1 year ago

ref #10186: remove conversation holder

View differences:

eu.etaxonomy.taxeditor.navigation/src/main/java/eu/etaxonomy/taxeditor/navigation/navigator/operation/DeleteOperation.java
20 20
import org.eclipse.core.runtime.IStatus;
21 21

  
22 22
import eu.etaxonomy.cdm.api.application.ICdmRepository;
23
import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
24 23
import eu.etaxonomy.cdm.api.service.DeleteResult;
25 24
import eu.etaxonomy.cdm.api.service.IClassificationService;
26 25
import eu.etaxonomy.cdm.api.service.ITaxonNodeService;
......
55 54
     * @param label a {@link java.lang.String} object.
56 55
     * @param undoContext a {@link org.eclipse.core.commands.operations.IUndoContext} object.
57 56
     * @param postOperationEnabled a {@link eu.etaxonomy.taxeditor.operation.IPostOperationEnabled} object.
58
     * @param conversationEnabled a {@link eu.etaxonomy.cdm.api.conversation.IConversationEnabled} object.
59 57
     * @param treeNodes a {@link java.util.Set} object.
60 58
     */
61 59
    public DeleteOperation(String label, IUndoContext undoContext,
62 60
            TaxonNodeDto taxonNode, TaxonDeletionConfigurator config,
63 61
            IPostOperationEnabled postOperationEnabled,
64
            IConversationEnabled conversationEnabled,
65 62
            ICdmEntitySessionEnabled cdmEntitySessionEnabled) {
66
        super(label, undoContext, postOperationEnabled, conversationEnabled, cdmEntitySessionEnabled);
63
        super(label, undoContext, postOperationEnabled, cdmEntitySessionEnabled);
67 64
        this.taxonNode = taxonNode;
68 65
        this.config = config;
69 66
        this.cdmEntitySessionEnabled = cdmEntitySessionEnabled;
......
75 72
     * @param label a {@link java.lang.String} object.
76 73
     * @param undoContext a {@link org.eclipse.core.commands.operations.IUndoContext} object.
77 74
     * @param postOperationEnabled a {@link eu.etaxonomy.taxeditor.operation.IPostOperationEnabled} object.
78
     * @param conversationEnabled a {@link eu.etaxonomy.cdm.api.conversation.IConversationEnabled} object.
79 75
     * @param treeNodes a {@link java.util.Set} object.
80 76
     */
81 77
    public DeleteOperation(String label, IUndoContext undoContext,
82 78
            Set<TaxonNodeDto> treeNodes, TaxonDeletionConfigurator config,
83 79
            IPostOperationEnabled postOperationEnabled,
84
            IConversationEnabled conversationEnabled,
85 80
            ICdmEntitySessionEnabled cdmEntitySessionEnabled) {
86
        super(label, undoContext, postOperationEnabled, conversationEnabled, cdmEntitySessionEnabled);
81
        super(label, undoContext, postOperationEnabled, cdmEntitySessionEnabled);
87 82
        this.treeNodes = treeNodes;
88 83
        this.config = config;
89 84
        this.cdmEntitySessionEnabled = cdmEntitySessionEnabled;

Also available in: Unified diff