mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-2 - Documentation - fixed missing help links in Decompiler; fixed
script categories
This commit is contained in:
parent
f0832a6e9d
commit
85d1ab7d51
10 changed files with 111 additions and 104 deletions
|
@ -14,7 +14,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
//Creates a template help file by reading all of the actions from a selected plugin.
|
||||
//@category HELP
|
||||
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
@ -102,7 +101,8 @@ public class CreateHelpTemplateScript extends GhidraScript {
|
|||
}
|
||||
|
||||
private List<DockingActionIf> getActions(PluginTool tool, Plugin plugin) {
|
||||
Set<DockingActionIf> actions = KeyBindingUtils.getKeyBindingActionsForOwner(tool, plugin.getName());
|
||||
Set<DockingActionIf> actions =
|
||||
KeyBindingUtils.getKeyBindingActionsForOwner(tool, plugin.getName());
|
||||
List<DockingActionIf> list = new ArrayList<>(actions);
|
||||
Comparator<DockingActionIf> comparator = (action1, action2) -> {
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue