Call math rounding with 'int' argument
Reports calls to round()
, ceil()
, floor()
, rint()
methods for Math
and StrictMath
with int
as the argument.
These methods could be called in case the argument is expected to be long
or double
, and it may have unexpected results.
The inspection provides a fix that simplify such expressions (except round
) to cast to double
.
Example:
int i = 2;
double d1 = Math.floor(i);
After the quick-fix is applied:
int i = 2;
double d1 = i;
Locating this inspection
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
MathRoundingWithIntArgument- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
New in 2023.1
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 242.22892 |
Last modified: 11 September 2024