bibliothek.chess.Main fails to start

bibliothek.chess.Main fails to start:

Exception in thread “main” java.lang.NullPointerException
at bibliothek.gui.dock.security.SecureDockController.init(SecureDockController.java:98)
at bibliothek.gui.dock.security.SecureDockController.(SecureDockController.java:94)
at bibliothek.chess.view.ChessDockController.(ChessDockController.java:24)
at bibliothek.chess.Core.startup(Core.java:89)
at bibliothek.chess.Main.main(Main.java:28)

Uh, ok? I’ll have to test it myself. Thanks for the info.

great!

I also suggest you go through all projects and normalize “Main” naming:
some are called “Main”, some “Application”, some “Core”, etc;
basically just make them all the same name if possible

thank you;

There already is a pattern behind the names:

  • Core is the application itself
  • Application starts “Core” in normal mode (read/write access to computer)
  • Webstart starts “Core” in secure mode (no access to computer)
  • Main is used if the application does not distinguish between “normal” and “secure” mode

Bugfix done: it happened only in this application because it uses another constructor for SecureDockController than the applications I usually use for playing around.