mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-25 17:00:36 -09:00
Tests - fixed bad method signature in test data file
This commit is contained in:
@@ -10,7 +10,6 @@
|
||||
##MODULE IP: Oxygen Icons - LGPL 3.0
|
||||
##MODULE IP: Tango Icons - Public Domain
|
||||
.gitignore||GHIDRA||||END|
|
||||
Ghidra.launch||GHIDRA||||END|
|
||||
Module.manifest||GHIDRA||||END|
|
||||
build.gradle||GHIDRA||||END|
|
||||
data/ElfFunctionsThatDoNotReturn||GHIDRA||||END|
|
||||
|
||||
@@ -21,15 +21,10 @@ public class TestDataType extends StructureDataType implements BuiltInDataType {
|
||||
add(new WordDataType());
|
||||
}
|
||||
|
||||
/**
|
||||
* @see ghidra.program.model.data.BuiltInDataType#clone(ghidra.program.model.data.DataTypeManager)
|
||||
*/
|
||||
public BuiltInDataType clone(DataTypeManager dataMgr) {
|
||||
public StructureDataType clone(DataTypeManager dataMgr) {
|
||||
return new TestDataType(dataMgr);
|
||||
}
|
||||
/**
|
||||
* @see ghidra.program.model.data.BuiltInDataType#getCTypeDeclaration(ghidra.program.model.data.DataOrganization)
|
||||
*/
|
||||
|
||||
public String getCTypeDeclaration(DataOrganization dataOrganization) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user