From 64f955703ce6cabbc26e5806b91a28e67591446e Mon Sep 17 00:00:00 2001 From: Shevek Date: Wed, 13 May 2015 12:31:06 -0700 Subject: Fix two javadoc @param warnings. --- src/main/java/org/anarres/cpp/StringLexerSource.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/anarres/cpp/StringLexerSource.java b/src/main/java/org/anarres/cpp/StringLexerSource.java index 8640bc8..853cc3a 100644 --- a/src/main/java/org/anarres/cpp/StringLexerSource.java +++ b/src/main/java/org/anarres/cpp/StringLexerSource.java @@ -29,6 +29,7 @@ public class StringLexerSource extends LexerSource { /** * Creates a new Source for lexing the given String. * + * @param string The input string to lex. * @param ppvalid true if preprocessor directives are to be * honoured within the string. */ @@ -39,8 +40,12 @@ public class StringLexerSource extends LexerSource { /** * Creates a new Source for lexing the given String. * + * Equivalent to calling new StringLexerSource(string, false). + * * By default, preprocessor directives are not honoured within * the string. + * + * @param string The input string to lex. */ public StringLexerSource(String string) { this(string, false); -- cgit v1.2.3