GT-2 - Documentation - fixed missing help links in Decompiler; fixed

script categories
This commit is contained in:
dragonmacher 2020-08-05 09:14:21 -04:00
parent f0832a6e9d
commit 85d1ab7d51
10 changed files with 111 additions and 104 deletions

View file

@ -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 {