mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-27 23:17:03 +08:00
Merge branch 'GP-0_ryanmkurtz_PR-4934_jobermayr_warnings'
This commit is contained in:
+1
-1
@@ -122,7 +122,7 @@ public class FridaModelTargetProcessLaunchWithOptionsConnectorImpl extends Frida
|
|||||||
ParameterDescription<Boolean> pF8 =
|
ParameterDescription<Boolean> pF8 =
|
||||||
ParameterDescription.create(Boolean.class, "ExitRace", false,
|
ParameterDescription.create(Boolean.class, "ExitRace", false,
|
||||||
false, "Suppress race on exit",
|
false, "Suppress race on exit",
|
||||||
"set this flag so frida & the handee don’t race to set its exit status");
|
"set this flag so frida & the handee don't race to set its exit status");
|
||||||
map.put("ExitRace", pF8);
|
map.put("ExitRace", pF8);
|
||||||
ParameterDescription<Boolean> pF9 = ParameterDescription.create(Boolean.class, "Detach",
|
ParameterDescription<Boolean> pF9 = ParameterDescription.create(Boolean.class, "Detach",
|
||||||
false,
|
false,
|
||||||
|
|||||||
@@ -144,8 +144,6 @@ public class ProgramBuilder {
|
|||||||
* Construct program builder using a full language object rather than a language id string
|
* Construct program builder using a full language object rather than a language id string
|
||||||
* @param name program name
|
* @param name program name
|
||||||
* @param language Language object
|
* @param language Language object
|
||||||
* @param compilerSpecID compiler specification ID (if null default spec will be used)
|
|
||||||
* @param consumer program consumer (if null this builder will be used as consumer and must be disposed to release program)
|
|
||||||
* @throws Exception if there is an exception creating the program
|
* @throws Exception if there is an exception creating the program
|
||||||
*/
|
*/
|
||||||
public ProgramBuilder(String name, Language language)
|
public ProgramBuilder(String name, Language language)
|
||||||
|
|||||||
+2
-1
@@ -81,12 +81,13 @@ public class IndexedLocalFileSystem extends LocalFileSystem {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
* @param rootPath path path for root directory.
|
* @param rootPath path for root directory.
|
||||||
* @param isVersioned if true item versioning will be enabled.
|
* @param isVersioned if true item versioning will be enabled.
|
||||||
* @param readOnly if true modifications within this file-system will not be allowed
|
* @param readOnly if true modifications within this file-system will not be allowed
|
||||||
* and result in an ReadOnlyException
|
* and result in an ReadOnlyException
|
||||||
* @param enableAsyncronousDispatching if true a separate dispatch thread will be used
|
* @param enableAsyncronousDispatching if true a separate dispatch thread will be used
|
||||||
* to notify listeners. If false, blocking notification will be performed.
|
* to notify listeners. If false, blocking notification will be performed.
|
||||||
|
* @param create if true a new folder will be created.
|
||||||
* @throws FileNotFoundException if specified rootPath does not exist
|
* @throws FileNotFoundException if specified rootPath does not exist
|
||||||
* @throws IOException if error occurs while reading/writing index files
|
* @throws IOException if error occurs while reading/writing index files
|
||||||
*/
|
*/
|
||||||
|
|||||||
+2
-1
@@ -37,12 +37,13 @@ public class IndexedV1LocalFileSystem extends IndexedLocalFileSystem {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
* @param file path path for root directory.
|
* @param rootPath path for root directory.
|
||||||
* @param isVersioned if true item versioning will be enabled.
|
* @param isVersioned if true item versioning will be enabled.
|
||||||
* @param readOnly if true modifications within this file-system will not be allowed
|
* @param readOnly if true modifications within this file-system will not be allowed
|
||||||
* and result in an ReadOnlyException
|
* and result in an ReadOnlyException
|
||||||
* @param enableAsyncronousDispatching if true a separate dispatch thread will be used
|
* @param enableAsyncronousDispatching if true a separate dispatch thread will be used
|
||||||
* to notify listeners. If false, blocking notification will be performed.
|
* to notify listeners. If false, blocking notification will be performed.
|
||||||
|
* @param create if true a new folder will be created.
|
||||||
* @throws FileNotFoundException if specified rootPath does not exist
|
* @throws FileNotFoundException if specified rootPath does not exist
|
||||||
* @throws IOException if error occurs while reading/writing index files
|
* @throws IOException if error occurs while reading/writing index files
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user