[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.ve] Re: Error Log filling up

I'm not sure why either but there is a workaround you can use to have VE ignore the line. It's kind of kludgy. We never got to put in an annotation that would tell VE to ignore something when I was working on VE. :-(

if(false)
  ;
else
  jTextArea.getDocument().addDocumentListener(new MyDocumentListener());

This will work because VE is designed to ignore the else block of an if statement.

cjob68@xxxxxxx wrote:
I found the line that is causing the problem.
jTextArea.getDocument().addDocumentListener(new MyDocumentListener());

I'm not sure why VE doesn't like this line. The code compiles fine and it also runs fine but when syncing the GUI it generates an error in the Error Log.

-- Thanks, Rich Kulp