mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
Opened access to the constructors
This commit is contained in:
parent
4c154f570b
commit
6dcb124889
1 changed files with 4 additions and 4 deletions
|
@ -46,11 +46,11 @@ import ghidra.util.data.DataTypeParser.AllowedDataTypes;
|
||||||
*/
|
*/
|
||||||
public abstract class AbstractDecompilerAction extends DockingAction {
|
public abstract class AbstractDecompilerAction extends DockingAction {
|
||||||
|
|
||||||
AbstractDecompilerAction(String name) {
|
protected AbstractDecompilerAction(String name) {
|
||||||
super(name, DecompilePlugin.class.getSimpleName());
|
super(name, DecompilePlugin.class.getSimpleName());
|
||||||
}
|
}
|
||||||
|
|
||||||
AbstractDecompilerAction(String name, KeyBindingType kbType) {
|
protected AbstractDecompilerAction(String name, KeyBindingType kbType) {
|
||||||
super(name, DecompilePlugin.class.getSimpleName(), kbType);
|
super(name, DecompilePlugin.class.getSimpleName(), kbType);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue