view src/main/java/jdk/internal/misc/Unsafe.java @ 53:fca0611bff52

Unsafe stub to be able to compile on JDK 8.
author shade
date Thu, 15 Dec 2016 23:19:23 +0100
parents
children 583fef4276f5
line wrap: on
line source

package jdk.internal.misc;

public class Unsafe {

    public Object allocateUninitializedArray(Class<?> componentType, int size) {
        throw new IllegalStateException("This is a stub, should not call this");
    }

}