Changed some boolean checks to use the recommended method of comparing floating point values in Java. (#1075)

This commit is contained in:
Koen De Groote
2017-07-22 13:00:24 +12:00
committed by Rob Bygrave
parent 66138e5ea2
commit bf5a8c2fad
4 changed files with 4 additions and 5 deletions
@@ -60,7 +60,7 @@ public class DeployDocPropertyOptions {
}
private void setBoost(float boost) {
if (boost != 1) {
if (Float.compare(boost, 1.0F) != 0) {
mapping.setBoost(boost);
}
}