mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch
'origin/GP-4386_ghidra1_ProjectArchiveNullFileID--SQUASHED' into patch (Closes #6254, Closes #6206)
This commit is contained in:
commit
a8a5f48d2d
3 changed files with 20 additions and 35 deletions
|
@ -218,8 +218,8 @@ public class GhidraFileData {
|
|||
}
|
||||
|
||||
/**
|
||||
* Returns a unique file-ID
|
||||
* @return the ID
|
||||
* Returns a unique file-ID if one has been established or null
|
||||
* @return the file-ID or null if failed to obtain ID
|
||||
*/
|
||||
String getFileID() {
|
||||
return fileID;
|
||||
|
|
|
@ -65,8 +65,13 @@ public interface DomainFile extends Comparable<DomainFile> {
|
|||
public boolean exists();
|
||||
|
||||
/**
|
||||
* Returns a unique file-ID
|
||||
* @return the ID
|
||||
* Returns a unique file-ID if one has been established or null. Examples which may result in
|
||||
* null ID:
|
||||
* <ul>
|
||||
* <li>Very old project file which pre-dates introduction of file ID, or</li>
|
||||
* <li>Remote versioned file with lost connection</li>
|
||||
* </ul>
|
||||
* @return the file-ID or null if failed to obtain ID.
|
||||
*/
|
||||
public String getFileID();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue