mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
Backwards compatibility for DeleteBlackboardArtifactTagAction, DeleteContentTagAction
This commit is contained in:
parent
07cd1d030a
commit
3d219d2947
@ -79,4 +79,29 @@ public class DeleteBlackboardArtifactTagAction extends AbstractAction {
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated, use actionPerformed() instead.
|
||||
*
|
||||
* @param event The event associated with the action.
|
||||
*
|
||||
* @deprecated
|
||||
*/
|
||||
@Deprecated
|
||||
protected void doAction(ActionEvent event) {
|
||||
actionPerformed(event);
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated, does nothing. The TagManager methods to create, update or
|
||||
* delete tags now do notify the case that there is a tag change. The case
|
||||
* then publishes an event that triggers a refresh of the tags sub-tree in
|
||||
* the tree view.
|
||||
*
|
||||
* @deprecated
|
||||
*/
|
||||
@Deprecated
|
||||
protected void refreshDirectoryTree() {
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -77,4 +77,29 @@ public class DeleteContentTagAction extends AbstractAction {
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated, use actionPerformed() instead.
|
||||
*
|
||||
* @param event The event associated with the action.
|
||||
*
|
||||
* @deprecated
|
||||
*/
|
||||
@Deprecated
|
||||
protected void doAction(ActionEvent event) {
|
||||
actionPerformed(event);
|
||||
}
|
||||
|
||||
/**
|
||||
* Deprecated, does nothing. The TagManager methods to create, update or
|
||||
* delete tags now do notify the case that there is a tag change. The case
|
||||
* then publishes an event that triggers a refresh of the tags sub-tree in
|
||||
* the tree view.
|
||||
*
|
||||
* @deprecated
|
||||
*/
|
||||
@Deprecated
|
||||
protected void refreshDirectoryTree() {
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user