diff --git a/Ghidra/Features/Base/certification.manifest b/Ghidra/Features/Base/certification.manifest index eba96a32d2..0fe3176a0b 100644 --- a/Ghidra/Features/Base/certification.manifest +++ b/Ghidra/Features/Base/certification.manifest @@ -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| diff --git a/Ghidra/Features/Base/src/test.slow/resources/ghidra/app/plugin/core/datamgr/TestDataType.txt b/Ghidra/Features/Base/src/test.slow/resources/ghidra/app/plugin/core/datamgr/TestDataType.txt index 5a89bd8552..38aeda5e18 100644 --- a/Ghidra/Features/Base/src/test.slow/resources/ghidra/app/plugin/core/datamgr/TestDataType.txt +++ b/Ghidra/Features/Base/src/test.slow/resources/ghidra/app/plugin/core/datamgr/TestDataType.txt @@ -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; }