Advertisement
Guest User

Untitled

a guest
May 4th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. double areaRadius = main.getConfig().getDouble("Close.MaxRadius"); // line 95; NPE
  2.  
  3.  
  4. double areaRadius = main
  5. .getConfig() // line 96; NPE
  6. .getDouble("Close.MaxRadius");
  7.  
  8. // remember, NPE's happen on something that doesnt exist. So, if 96 says NPE, that means main doesnt have a method of getConfig()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement