Overloaded methods with same number of parameters
Reports methods that are declared in the same class, have the same name, and the same number of parameters. Such overloads cam be very confusing because it can be unclear which overload gets called.
Example:
class Main {
public static void execute(Runnable r) {}
public static <T> void execute(RunnableFuture<T> c) {}
}
Use the option to ignore overloaded methods whose parameter types are definitely incompatible.
Inspection options
Option | Type | Default |
---|---|---|
Ignore overloaded methods whose parameter types are definitely incompatible | Checkbox | true |
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Java, 233.SNAPSHOT |
Last modified: 13 July 2023