mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
commit
14177c5374
4 changed files with 33 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