1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Removed warning.

This commit is contained in:
John Camelon 2004-09-28 21:55:01 +00:00
parent 28c842f6a3
commit 045dc8071e

View file

@ -40,8 +40,7 @@ public class ParserFactory {
{ {
if( mode == ParserMode.QUICK_PARSE ) if( mode == ParserMode.QUICK_PARSE )
return new QuickParseASTFactory(extensionFactory.createASTExtension( mode )); return new QuickParseASTFactory(extensionFactory.createASTExtension( mode ));
else return new CompleteParseASTFactory( language, mode, extensionFactory.createASTExtension( mode ));
return new CompleteParseASTFactory( language, mode, extensionFactory.createASTExtension( mode ));
} }