-
continuation of https://github.com/mebigfatguy/fb-contrib/issues/408
```
public abstract class AbstractClassCouplingCheck extends AbstractCheck {
private static final char DOT = '.';
…
-
So this particularly error seems kind of ludicrous to me
Essentially this is only a security vulnerability if someone has added malicious code to your jvm. In most cases if that happens you're beyo…
-
## Issue Description
Problem with findbugs plugin:
```
ERROR Error during SonarScanner Engine execution
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'Cl…
-
We could benefit from adding yaml support. I believe Jackson can do this but have not explored that. I did look at and try to code a working example with snakeyaml. It can at least take an extremel…
-
**Problem.**
This does an assertion:
`uiElement.assertThat().text().is("text");`
This reads and feels the same but does nothing:
`uiElement.assertThat().text().contains("sisdfn");`
The main pro…
-
Hi, In **Saturn-3.5.1/saturn-core**,there is a dependency **org.apache.httpcomponents:httpclient:4.5.2** that calls the risk method.
[CVE-2020-13956](https://cve.mitre.org/cgi-bin/cvename.cgi?name=…
-
A common mistake among new to ParSeq is to treat Task as if it's creation caused is execution e.g.:
```
Task getRelevanceItemsTask = _relevanceBackendClient.get(keys)
.map(relevanceItems -> {
…
-
Using SpotBugs 4.5.0 and the Gradle plugin version 5.0.0. After updating to it, I started getting:
```
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/lang/IllegalCla…
-
Dapr java SDK is available with JDK 11 and uses spring boot version 2.7.8 as of now. Spring boot has the release latest version 3.0.
In order to move the Spring 3.0 the library has to be supported wi…
-
A very basic singleton like this:
```
public static final class Foo implements Serializable {
private static final Foo INSTANCE = new Foo();
private Foo() {
// Hidden on purpos…