> @@ -753,8 +770,24 @@ public Void call() {
> return null;
> }
> throw new RuntimeException("After " + retryCountLimit + " retries:
> " + lastException);
> + }
> +
> + // JDK-4715154
> + private void closeDirectBuffer(MappedByteBuffer mbb) {
> + if ( mbb == null || !mbb.isDirect() )
> + return;
> +
> + try {
> + Method cleaner = mbb.getClass().getMethod("cleaner");
Do we need to run this on all systems or just Windows?
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1010/files/304c72c3e24e376cebbb98bd3b8f8ad6ecd72dac#r78608199