SiLeBAT/FSK-Lab

View on GitHub
de.bund.bfr.knime.pmm.nodes/src/de/bund/bfr/knime/pmm/js/common/SettingsHelper.java

Summary

Maintainability
A
0 mins
Test Coverage

Null is returned but a "Boolean" is expected.
Open

            return null;

While null is technically a valid Boolean value, that fact, and the distinction between Boolean and boolean is easy to forget. So returning null from a Boolean method is likely to cause problems with callers' code.

Noncompliant Code Example

public Boolean isUsable() {
  // ...
  return null;  // Noncompliant
}

See

There are no issues that match your filters.

Category
Status