< prev index next >

src/jdk.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/EmptyEventProvider.java

Print this page
rev 12121 : 8167180: [JVMCI] Exported elements referring to inaccessible types in jdk.vm.ci

*** 18,38 **** * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.vm.ci.hotspot.services; /** * An empty implementation for {@link EventProvider}. This implementation is used when no logging is * requested. */ ! final class EmptyEventProvider extends EventProvider { ! ! EmptyEventProvider() { ! super(null); ! } static InternalError shouldNotReachHere() { throw new InternalError("should not reach here"); } --- 18,34 ---- * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package jdk.vm.ci.hotspot; /** * An empty implementation for {@link EventProvider}. This implementation is used when no logging is * requested. */ ! final class EmptyEventProvider implements EventProvider { static InternalError shouldNotReachHere() { throw new InternalError("should not reach here"); }
< prev index next >