-
Enhancement
-
Resolution: Fixed
-
P4
-
None
-
b144
-
Not verified
When File.createTempFile() is called, a random long value is generated, which is then made positive with Math.abs() and then used as a part of the directory name.
Instead, it would be better to use Long.toUnsignedString():
1) no need to deal with the corner case Long.MIN_VALUE,
2) increase the space of random values by the factor of 2.
Instead, it would be better to use Long.toUnsignedString():
1) no need to deal with the corner case Long.MIN_VALUE,
2) increase the space of random values by the factor of 2.