Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 60166 invoked from network); 19 Aug 2009 00:34:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 19 Aug 2009 00:34:19 -0000 Received: (qmail 50324 invoked by uid 500); 19 Aug 2009 00:34:37 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 50235 invoked by uid 500); 19 Aug 2009 00:34:37 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 50227 invoked by uid 99); 19 Aug 2009 00:34:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2009 00:34:37 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [208.69.42.181] (HELO radix.cryptio.net) (208.69.42.181) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Aug 2009 00:34:28 +0000 Received: by radix.cryptio.net (Postfix, from userid 1007) id 13BEB71C528; Tue, 18 Aug 2009 17:34:07 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by radix.cryptio.net (Postfix) with ESMTP id 115C371C4E8 for ; Tue, 18 Aug 2009 17:34:07 -0700 (PDT) Date: Tue, 18 Aug 2009 17:34:07 -0700 (PDT) From: Chris Hostetter To: Lucene Dev Subject: Cleaning up Javadoc warnings in contribs Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Checked: Checked by ClamAV on apache.org As a general rule: if the javadoc command generates a warning, it's a pretty good indication that the resulting javadocs aren't going to look the way you expect. (there may be lots of places where the javadocs look wrong and no warning is logged -- but the reverse is almost never true) The other day, I went through all of the warnings produced by "ant javadocs-core" and fixed the offending javadoc comments. It would be great if each of the various defacto "contrib maintainers" (you know who you are) could take a look at the warnings produced by each of the contribs. They're pretty easy to spot if you grep the raw console output from the nightly builds for "[javadoc]" and "warning" ... hossman@coaster:~$ curl -s http://hudson.zones.apache.org/hudson/job/Lucene-trunk/922/consoleText | grep "[javadoc]" | grep "warning" | perl -nle 'print $1 if m{contrib/([^/]*)/}' | sort | uniq -c 96 analyzers 32 benchmark 52 collation 8 db 32 fast-vector-highlighter 32 highlighter 24 memory 40 queryparser 8 regex 52 remote 8 snowball 8 xml-query-parser -Hoss --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org