ursinn/DeadByDaylightMC

View on GitHub
src/main/java/noahnok/dbdl/files/commands/StatsCommand.java

Summary

Maintainability
A
0 mins
Test Coverage

Refactor this method to not always return the same value.
Open

    public boolean onCommand(CommandSender commandSender, Command command, String s, String[] strings) {

When a method is designed to return an invariant value, it may be poor design, but it shouldn't adversely affect the outcome of your program. However, when it happens on all paths through the logic, it is surely a bug.

This rule raises an issue when a method contains several return statements that all return the same value.

Noncompliant Code Example

int foo(int a) {
  int b = 12;
  if (a == 1) {
    return b;
  }
  return b;  // Noncompliant
}

There are no issues that match your filters.

Category
Status