1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +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,7 +40,6 @@ 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 ));
} }