I have an application that I am working on that decided to stop working in a very unexplained manner. After some debugging and error tracing, I found the problem to be in the call to a specific method in my code.
public static void main(String[] args) throws FileNotFoundException {
System.out.println("Print ");
InternalPanel.init();
}
IN INTERNAL PANEL
public static void init() {
System.out.println("Line");
}
Just to clarify, calling any other methods from other classes works. Calling any methods from this specific class does not work.
Also, this class (and methods within) have always worked.
When it stopped working, I was making minor changes to something completely irrelevant in the program (As in, in a separate thread, having no effect on the class in question)
InternalPanelhave any kind of static initialization? If so, please show that code. – Paul Bellora Aug 10 '12 at 3:52InternalPanelis this a Swing program? Should be doing all component manipulation on the AWT Event Dispatch Thread (EDT) (usejava.awt.EventQueue.invokeLaterand lots of boilerplate). Also mutable statics/global state is bad. / What are the other threads doing? - use your debugger,jstack, ctrl-\/ctrl-break, or similar. – Tom Hawtin - tackline Aug 10 '12 at 4:29