mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
GP-0 Minor cleanup
This commit is contained in:
parent
b5ccf1f063
commit
2c5669dbd0
4 changed files with 33 additions and 25 deletions
|
@ -570,11 +570,6 @@ public class DataTypeArchiveDB extends DomainObjectAdapterDB implements DataType
|
|||
super.updateMetadata();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateID() {
|
||||
dataTypeManager.updateID();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void domainObjectRestored() {
|
||||
super.domainObjectRestored();
|
||||
|
|
|
@ -38,22 +38,18 @@ public interface DataTypeArchive extends DataTypeManagerDomainObject {
|
|||
public static final Date JANUARY_1_1970 = new Date(0);
|
||||
|
||||
/**
|
||||
* Gets the associated standalone data type manager.
|
||||
* @return the data type manager.
|
||||
* {@return the associated standalone data type manager.}
|
||||
*/
|
||||
@Override
|
||||
public StandAloneDataTypeManager getDataTypeManager();
|
||||
|
||||
/**
|
||||
* Gets the default pointer size as it may be stored within the data type archive.
|
||||
* @return default pointer size.
|
||||
* {@return the default pointer size as it may be stored within the data type archive.}
|
||||
*/
|
||||
public int getDefaultPointerSize();
|
||||
|
||||
/**
|
||||
* Returns the creation date of this data type archive.
|
||||
* existed, then Jan 1, 1970 is returned.
|
||||
* @return the creation date of this data type archive
|
||||
* {@return the creation date of this data type archive or Jan 1, 1970 if unknown.}
|
||||
*/
|
||||
public Date getCreationDate();
|
||||
|
||||
|
@ -69,6 +65,4 @@ public interface DataTypeArchive extends DataTypeManagerDomainObject {
|
|||
*/
|
||||
public void invalidate();
|
||||
|
||||
public void updateID();
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue