-
Dear Spotbugs Team,
in our code we would like to spot issues like these:
1.
try{
...
} catch (AnyException e){
// doing nothing, no rethrow, no logging ...
…
-
I realize there is far more than just spotbugs within find-sec-bugs. I'm trying to start a consolidation of tools that we would have all in one place with it comes to spotbugs for the ones that are m…
-
There is an annoying bug / open issue with SpotBugs: It does not recognize the equals implementation of Java records as acceptable and issues a warning.
Details: https://github.com/spotbugs/spotbug…
-
I want to know how can I import spotbugs project in eclipse and run it in debug mode?
-
```
$ build/executable/spotbugs --aux /Users/kengo/Downloads/graalvm-ce-java11-21.1.0/Contents/Home/lib/jrt-fs.jar build/libs/spotbugs-cli-1.0.0-SNAPSHOT.jar
Exception in thread "main" java.lang.NoC…
-
@uhafner I found [this your comment](https://github.com/spotbugs/discuss/issues/95#issuecomment-649091550) and want to ask one thing.
> using the internal parser is also not very elegant since the …
-
Enabling the [Spotbugs plugin](https://plugins.gradle.org/plugin/com.github.spotbugs) for Gradle causes the plugin to lint every single dependency as `unused-dependency` while using the [Findbugs plug…
-
When Ant task is invoked with classpathref and pluginlistref, [PluginLoader](https://github.com/spotbugs/spotbugs/blob/e120cb9ff1041948e0d970c0642c499aa6dba7d2/spotbugs/src/main/java/edu/umd/cs/findbu…
-
Spotbugs ignores a suppress warnings annotation. But just one, other are working as expected.
Please take a look at my class `MainFrame.java` line 117:
```java
@SuppressFBWarnings(value = "DMI_…
-
`
Boolean isEmpty(Object obj){
return obj == null;
}
void fun() {
Object obj = null;
if (isEmpty(obj)){
doSomething();
} else {
…