1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Remove warning.

This commit is contained in:
Alain Magloire 2004-09-03 21:04:14 +00:00
parent 7a2c1013a6
commit 436d864a06

View file

@ -72,7 +72,6 @@ public class CModelBuilder {
private org.eclipse.cdt.internal.core.model.TranslationUnit translationUnit;
private Map newElements;
private IQuickParseCallback quickParseCallback;
private IASTCompilationUnit compilationUnit;
// indicator if the unit has parse errors
private boolean hasNoErrors = false;
@ -203,7 +202,7 @@ public class CModelBuilder {
long startTime = System.currentTimeMillis();
try
{
compilationUnit = parse(quickParseMode, true);
parse(quickParseMode, true);
}
catch( ParserException e )