--- a/src/java.base/linux/classes/jdk/internal/platform/cgroupv1/SubSystem.java Wed Jul 24 09:28:48 2019 +0200
+++ b/src/java.base/linux/classes/jdk/internal/platform/cgroupv1/SubSystem.java Thu Jul 25 12:15:27 2019 +0200
@@ -132,7 +132,7 @@
retval = Long.parseLong(strval);
} catch (NumberFormatException e) {
// For some properties (e.g. memory.limit_in_bytes) we may overflow the range of signed long.
- // In this case, return Long.max
+ // In this case, return Long.MAX_VALUE
BigInteger b = new BigInteger(strval);
if (b.compareTo(BigInteger.valueOf(Long.MAX_VALUE)) > 0) {
return Long.MAX_VALUE;