Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[equinox-dev] Null pointer exception Equinox 3.2 JVM J9

There is no problem lauching equinox 3.2 on a "standard" JVM (sun JDK1.5), but we cant launch it with J9 (version 2.2, JVM 1.3.0), we have a NPE due to IllegalStateException in org.eclipse.osgi.internal.baseadaptor.BaseStorage :

   private void checkSystemState(State state) {
      ...
     BundleDescription systemBundle = state.getBundle(0);
       if (systemBundle == null || !systemBundle.isResolved()){
           // this would be a bug in the framework
->           throw new IllegalStateException();
       }

Is there someOne with the same problem. I don't exactly undestand why we have this exception fired ...

Is it a bug ?
--
Thanks
LBR


Back to the top