mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-1385: The PE exporter no longer forces files to be saved with a .exe
extension
This commit is contained in:
parent
0d8e625e31
commit
e78c73e51a
3 changed files with 4 additions and 5 deletions
|
@ -43,11 +43,10 @@ public abstract class AbstractLoaderExporter extends Exporter {
|
|||
* Creates a new {@link AbstractLoaderExporter}
|
||||
*
|
||||
* @param name The display name of this exporter
|
||||
* @param extension The default extension for this exporter
|
||||
* @param help The {@link HelpLocation} for this exporter
|
||||
*/
|
||||
protected AbstractLoaderExporter(String name, String extension, HelpLocation help) {
|
||||
super(name, extension, help);
|
||||
protected AbstractLoaderExporter(String name, HelpLocation help) {
|
||||
super(name, "", help);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -27,7 +27,7 @@ public class ElfExporter extends AbstractLoaderExporter {
|
|||
* Create a new {@link ElfExporter}
|
||||
*/
|
||||
public ElfExporter() {
|
||||
super("ELF", "", new HelpLocation("ExporterPlugin", "elf"));
|
||||
super("ELF", new HelpLocation("ExporterPlugin", "elf"));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -27,7 +27,7 @@ public class PeExporter extends AbstractLoaderExporter {
|
|||
* Creates a new {@link PeExporter}
|
||||
*/
|
||||
public PeExporter() {
|
||||
super("PE", "exe", new HelpLocation("ExporterPlugin", "pe"));
|
||||
super("PE", new HelpLocation("ExporterPlugin", "pe"));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue