8202745: Remove hyphens from "out-of-bounds"

Reviewed-by: rriggs, dholmes
This commit is contained in:
Goetz Lindenmaier 2018-05-07 23:07:01 +02:00
parent ac3043c692
commit b72846bc20
10 changed files with 40 additions and 40 deletions

View file

@ -1243,7 +1243,7 @@ public class ImageWriteParam extends IIOParam {
throw new IllegalStateException("No compression type set!");
}
if (quality < 0.0F || quality > 1.0F) {
throw new IllegalArgumentException("Quality out-of-bounds!");
throw new IllegalArgumentException("Quality out of bounds!");
}
this.compressionQuality = quality;
}
@ -1341,7 +1341,7 @@ public class ImageWriteParam extends IIOParam {
throw new IllegalStateException("No compression type set!");
}
if (quality < 0.0F || quality > 1.0F) {
throw new IllegalArgumentException("Quality out-of-bounds!");
throw new IllegalArgumentException("Quality out of bounds!");
}
return -1.0F;
}