Clarify why input isn't used in VersionParser.parse()

This commit is contained in:
Zafar Khaja 2015-06-09 13:39:44 +03:00
parent 5e760d78c0
commit 9c72603fb9

View File

@ -171,7 +171,8 @@ class VersionParser implements Parser<Version> {
/** /**
* Parses the input string. * Parses the input string.
* *
* @param input the input string to parse * @param input the input string to parse. Although {@code input} is not used
* in the method, it's present to override {@code Parser.parse(String)}
* @return a valid version object * @return a valid version object
* @throws ParseException when there is a grammar error * @throws ParseException when there is a grammar error
* @throws UnexpectedCharacterException when encounters an unexpected character type * @throws UnexpectedCharacterException when encounters an unexpected character type