Originally Posted by
JavaBean
At line 1399, you try to call a method of a null object. Check that line and test the objects there for nullness (e.g. if (myObj == null) {print("myObj is null");}. Once you find which object is null, try to fix that bug by analyzing why it is null and how you can solve ..