You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open the "Checkstyle Configuration" dialog to configure a rule set. Type into the rule filter text field. An NPE happens on some rule that has a null description.
java.lang.NullPointerException
at java.util.regex.Matcher.getTextLength(Matcher.java:1283)
at java.util.regex.Matcher.reset(Matcher.java:309)
at java.util.regex.Matcher.<init>(Matcher.java:229)
at java.util.regex.Pattern.matcher(Pattern.java:1093)
at net.sf.eclipsecs.ui.config.CheckConfigurationConfigureDialog$TreeFilter.selectRule(CheckConfigurationConfigureDialog.java:1099)```
The text was updated successfully, but these errors were encountered:
Avoid an NPE when matching on the rule description. For completeness,
apply the same null check on the name fields also, although those should
never return null.
Bananeweizen
added a commit
to Bananeweizen/eclipse-cs
that referenced
this issue
May 4, 2019
Avoid an NPE when matching on the rule description. For completeness,
apply the same null check on the name fields also, although those should
never return null.
Open the "Checkstyle Configuration" dialog to configure a rule set. Type into the rule filter text field. An NPE happens on some rule that has a null description.
The text was updated successfully, but these errors were encountered: