aboutsummaryrefslogtreecommitdiff
path: root/src/utils/lombok/javac/java7/CommentCollectingParserFactory.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2013-07-08 04:58:00 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2013-07-08 04:58:00 +0200
commita6c1be550fd1911084faaf7f54ae7bbbd5673642 (patch)
treeb6c433593952e46ce5b1db9c4c9123e445769220 /src/utils/lombok/javac/java7/CommentCollectingParserFactory.java
parent4923506d737718cec49e35aa9a273b3a999eefc6 (diff)
downloadlombok-a6c1be550fd1911084faaf7f54ae7bbbd5673642.tar.gz
lombok-a6c1be550fd1911084faaf7f54ae7bbbd5673642.tar.bz2
lombok-a6c1be550fd1911084faaf7f54ae7bbbd5673642.zip
A lot of refactoring on how javadoc is handled, to prepare for copying javadoc from field to setter/getter in javac.
Diffstat (limited to 'src/utils/lombok/javac/java7/CommentCollectingParserFactory.java')
-rw-r--r--src/utils/lombok/javac/java7/CommentCollectingParserFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/lombok/javac/java7/CommentCollectingParserFactory.java b/src/utils/lombok/javac/java7/CommentCollectingParserFactory.java
index e361a5bd..e9575c14 100644
--- a/src/utils/lombok/javac/java7/CommentCollectingParserFactory.java
+++ b/src/utils/lombok/javac/java7/CommentCollectingParserFactory.java
@@ -30,8 +30,8 @@ public class CommentCollectingParserFactory extends ParserFactory {
public Parser newParser(CharSequence input, boolean keepDocComments, boolean keepEndPos, boolean keepLineMap) {
ScannerFactory scannerFactory = ScannerFactory.instance(context);
- Lexer lexer = scannerFactory.newScanner(input, keepDocComments);
- Object x = new CommentCollectingParser(this, lexer, keepDocComments, keepLineMap, commentsMap);
+ Lexer lexer = scannerFactory.newScanner(input, true);
+ Object x = new CommentCollectingParser(this, lexer, true, keepLineMap, commentsMap);
return (Parser) x;
// CCP is based on a stub which extends nothing, but at runtime the stub is replaced with either
//javac6's EndPosParser which extends Parser, or javac7's EndPosParser which implements Parser.