mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GT-3063 fix javadoc
This commit is contained in:
parent
97f484fe8d
commit
bc81cdcac5
1 changed files with 10 additions and 0 deletions
|
@ -525,6 +525,16 @@ public class FileSystemService {
|
|||
return derivedFile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the specified derived file exists in the file cache.
|
||||
*
|
||||
* @param fsrl {@link FSRL} of the container
|
||||
* @param derivedName name of the derived file inside of the container
|
||||
* @param monitor {@link TaskMonitor}
|
||||
* @return boolean true if file exists at time of query, false if file is not in cache
|
||||
* @throws CancelledException if user cancels
|
||||
* @throws IOException if other IO error
|
||||
*/
|
||||
public boolean hasDerivedFile(FSRL fsrl, String derivedName, TaskMonitor monitor)
|
||||
throws CancelledException, IOException {
|
||||
FileCacheEntry srcCFI = getCacheFile(fsrl, monitor);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue