How can I speed up Netbeans Task Marker resolution?
Posted
by Stephen
on Stack Overflow
See other posts from Stack Overflow
or by Stephen
Published on 2009-07-22T10:29:22Z
Indexed on
2010/05/12
5:04 UTC
Read the original article
Hit count: 201
I'm trying to quickly navigate and fix problems in code in Netbeans, and it just takes too long.
I'll fix a problem, and it will take seconds to re-compile. While this is happening, the marker remains, and all the others that depend on it will too (requiring multiple next-marker key strokes to get to a "new" problem). If I'm doing a fix that changes the number of lines (e.g. organise imports), the markers will navigate to the wrong place, even though the correct text is underlined.
Is there a way to speed this up? I presume it's because it's doing a full file compilation via javac to calculate the markers. BUT the information is available in netbeans, because the correct text is underlined, even when the compilation occurs.
© Stack Overflow or respective owner