Bump for the GA.
Writing code makes most people feel stupid :) Been there, done that.
Comment has been collapsed.
I know the feeling. I had to debug a project with over 350k lines of code for a client only to find out the culprit was a misplaced "}". The funny thing is by looking through their versioning system I noticed they used it like that for years, it went through multiple iterations and it even survived a code refactoring a few months before they decided to find out what was going on.
Comment has been collapsed.
NullPointerExeptions mostly happen when you forget to initialize something;)
Comment has been collapsed.
Good to see you figured it out, i would not have been much of a help anyways. Thanks for the gib!
Comment has been collapsed.
Glad to see you figured it out... I wouldn't have been able to help anyway
Comment has been collapsed.
1 Comments - Last post 3 minutes ago by pb1
6 Comments - Last post 30 minutes ago by Bomfist
13 Comments - Last post 40 minutes ago by Outmind
30 Comments - Last post 43 minutes ago by Chris76de
2 Comments - Last post 45 minutes ago by sallachim
17,448 Comments - Last post 59 minutes ago by Masafor
10 Comments - Last post 1 hour ago by NB264
22 Comments - Last post 7 minutes ago by pb1
54 Comments - Last post 11 minutes ago by BauerBoy24
558 Comments - Last post 16 minutes ago by Ignition365
19 Comments - Last post 18 minutes ago by Sh4dowKill
184 Comments - Last post 45 minutes ago by pizzahut
2,953 Comments - Last post 1 hour ago by Sebastien
1,176 Comments - Last post 2 hours ago by Tucs
Hello all. So I'm currently in the process of writing a little java program and I'm getting a NullPointerException and I have no idea why it's giving me it. I know what it means, but as far as I can see, it shouldn't happen.
Here's a (very) small part of my code (of my Game class):
And the constructor of GUIHandler:
I think this is where it throws the error (discovered that by printing a lot to the console (basically before every statement) and then checking where it happened), but I have no idea why. Does anyone have any idea?
I know this is not the most optimal place to ask, but I know that there are quite a few people here that might be able to help me and I really just needed an excuse to make a forum GA. :p
https://www.steamgifts.com/giveaway/CHwhA/chroma-squad
EDIT: nevermind, I'm an idiot. I forgot to initialize an ArrayList...
I feel so stupid now...
Comment has been collapsed.