Skip to content

Commit 7a7c538

Browse files
BananeweizenCalixte
authored andcommitted
Wrong context help for some uncategorized checks
Some checks have no category and need to be redirected to "misc". Example: UpperEll.
1 parent 3f21259 commit 7a7c538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net.sf.eclipsecs.ui/src/net/sf/eclipsecs/ui/quickfixes/MarkerHelpContextProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public static String getOnlineHelp(String moduleName) {
9999
}
100100
var group = metadata.getGroup().getGroupId().toLowerCase();
101101
// some web pages are different to the packages in Checkstyle
102-
if ("indentation".equals(group)) {
102+
if ("indentation".equals(group) || StringUtils.isEmpty(group)) {
103103
group = "misc";
104104
}
105105
var file = moduleName.toLowerCase();

0 commit comments

Comments
 (0)