I am using a JTable, and I get a null pointer exception at random times while updating it. When I set Eclipse to catch all null pointer exceptions, I was very surprised to see the rendererPane field in BasicTableUI.java (a Swing class) is null. Has anyone had to deal with this before? I am lost on how to tackle this issue.
Share
Classic error, I was running Swing code outside the EDT, thanks for reminding me to check that out!