We temporarily commented out reporting of unsigned integers in `BoundedFieldGenerator`. As for now, It is not clear for us how to report this information to users, and in which form. We have considered the following options: 1. Compilation warnings (but Java supports unsigned types with special tricks around). 2. Compilation hints (we are not a code analysis tool). The point is to inform users that in Java such primitives must be treated in a special [way](https://www.baeldung.com/java-unsigned-arithmetic#the-unsigned-integer-api), so that they should be careful about them.