You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2010/10/01 22:44:56 UTC

svn commit: r1003645 - /lucene/dev/trunk/lucene/common-build.xml

Author: uschindler
Date: Fri Oct  1 20:44:56 2010
New Revision: 1003645

URL: http://svn.apache.org/viewvc?rev=1003645&view=rev
Log:
Enable unchecked warnings: we have now only some violations in contrib and the recently introduced ones by Ryan. As we want to get rid of them (the contrib ones seem to be easy), I switch it globally on.

Modified:
    lucene/dev/trunk/lucene/common-build.xml

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1003645&r1=1003644&r2=1003645&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Fri Oct  1 20:44:56 2010
@@ -646,7 +646,7 @@
         <!-- <compilerarg line="-Xmaxwarns 10000000"/>
         <compilerarg line="-Xmaxerrs 10000000"/> -->
         <!-- for generics in Java 1.5: -->
-        <!--<compilerarg line="-Xlint:unchecked"/>-->
+        <compilerarg line="-Xlint:unchecked"/>
       </javac>
     </sequential>
   </macrodef>