It turns out that we really should create an MBeanServer, even if we don't populate it with anything useful, applications might still want to register their own MBeans.

This fix allows Derby 10.4.2.0 to work.
This commit is contained in:
jfrijters 2008-12-24 07:00:23 +00:00
Родитель 4eac573e0d
Коммит 20a9744657
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -102,7 +102,7 @@ public class ManagementFactory {
}
public static MBeanServer createPlatformMBeanServer() {
throw new Error("Not implemented");
return MBeanServerFactory.createMBeanServer();
}
public static boolean isThreadSuspended(int state) {