mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 06:23:08 +08:00
Remove unnecessary code (#4141)
This commit is contained in:
@ -17,7 +17,7 @@ public class FastInverseSqrt {
|
||||
i = 0x5f3759df - (i >> 1);
|
||||
x = Float.intBitsToFloat(i);
|
||||
x = x * (1.5f - xhalf * x * x);
|
||||
return x == (float) ((float) 1 / (float) Math.sqrt(number));
|
||||
return x == ((float) 1 / (float) Math.sqrt(number));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user