< prev index next >

src/java.base/share/classes/java/nio/file/Files.java

Print this page
rev 51958 : 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
Reviewed-by: alanb, dfuchs, kvn

*** 3126,3137 **** * Attempts to allocate larger arrays may result in * OutOfMemoryError: Requested array size exceeds VM limit */ private static final int MAX_BUFFER_SIZE = Integer.MAX_VALUE - 8; ! private static final jdk.internal.misc.JavaLangAccess JLA = ! jdk.internal.misc.SharedSecrets.getJavaLangAccess(); /** * Reads all the bytes from an input stream. Uses {@code initialSize} as a hint * about how many bytes the stream will have. * --- 3126,3137 ---- * Attempts to allocate larger arrays may result in * OutOfMemoryError: Requested array size exceeds VM limit */ private static final int MAX_BUFFER_SIZE = Integer.MAX_VALUE - 8; ! private static final jdk.internal.access.JavaLangAccess JLA = ! jdk.internal.access.SharedSecrets.getJavaLangAccess(); /** * Reads all the bytes from an input stream. Uses {@code initialSize} as a hint * about how many bytes the stream will have. *
< prev index next >