nmatt
nmatt
BED_BOGUS_EXCEPTION_DECLARATION is applied to methods that override/implement an inherited method. In other words, it is applied to methods that implement an API defined by a super type. Narrowing the throws...
PSC_PRESIZE_COLLECTIONS is reported on code of the form: ```java List allFoos = new ArrayList(); for (Bar bar : bars) { allFoos.add(bar.getFoo()); for (Baz baz : bar.getBazs()) { allFoos.add(baz.getFoo()); } for...
In the following code, PRMC_POSSIBLY_REDUNDANT_METHOD_CALLS is reported despite the `@SuppressFBWarnings` annotation. ```java @SuppressFBWarnings("PRMC_POSSIBLY_REDUNDANT_METHOD_CALLS") public static final Pattern PDF_DATE_PATTERN = Pattern.compile( "D:" + capture(digits(4)) // 1: YYYY + optional(capture(digits(2)) // 2:...
TBP_TRISTATE_BOOLEAN_PATTERN seems to be redundant to [NP_BOOLEAN_RETURN_NULL](http://findbugs.sourceforge.net/bugDescriptions.html#NP_BOOLEAN_RETURN_NULL). Or at least it's not clear what the difference would be.
One useful benefit when duplicating a tab is that the tab's history is also duplicated (i.e. "back" still works in the clone). In Internet Explorer, opening a link in a...
### Apache NetBeans version Apache NetBeans 15 ### What happened Example Java source code: ```java public abstract class AbstractBase { abstract void method(); static { AbstractBase base = new Derived();...
### Apache NetBeans version Apache NetBeans 15 ### What happened Example Java source code: ```java public final class Example { private final List items; // (*) public Example(List items) {...
### Apache NetBeans version Apache NetBeans 15 ### What happened When changing a file that is under Git control, and then changing it back to the original state in the...
Feature request: Add a menu item to the View menu to toggle the Change History marks on and off. ~~(This would have the same functionality as currently provided in Preferences...
MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR is reported for mere method references, without them being invoked. This happens with SpotBugs version 4.8.3 (current release). Example code: ```java public class Example { public String s; public...