JavaDoc fixes. Curiously the Ant build does not seem to report these as problems, Eclipse pointed them out for me.

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6560 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Ryan Gustafson
2008-10-04 05:45:53 +00:00
parent b7d7a056b0
commit 11bbd666ae
2 changed files with 1 additions and 5 deletions

View File

@ -38,8 +38,6 @@ public class RuleChain {
* The RuleSet to which the rule belongs.
* @param rule
* The Rule to add.
* @param language
* The Language used by the Rule.
*/
private void add(RuleSet ruleSet, Rule rule) {
RuleChainVisitor visitor = getRuleChainVisitor(rule.getLanguage());

View File

@ -186,9 +186,7 @@ public enum LanguageVersion {
* A utility method to find the all version associated with the given
* terse name.
* @param languageTerseName The LanguageVersion terse name.
* @return The LanguageVersion with this terse name, <code>null</code> if there is
* no LanguageVersion with this terse name.
* @return A list of versions associated with the terse name
* @return A list of versions associated with the terse name.
*/
public static List<LanguageVersion> findVersionsForLanguageTerseName(String languageTerseName) {
List<LanguageVersion> versionsAvailable = new ArrayList<LanguageVersion>(0);