I created an Initialize class to avoid a multitude of unneeded objects. To use this object I created an instance of it like so:
public static Initialize INIT = new Initialize();
Whenever I use "Initialize.INIT" I get a NullPointer at "Initialize".
What can I do to solve my original error, StackOverflow and avoid NPEs?