You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pylucene-commits@lucene.apache.org by va...@apache.org on 2011/12/07 17:26:15 UTC

svn commit: r1211511 - /lucene/pylucene/branches/branch_3x/java/org/apache/pylucene/index/PythonIndexDeletionPolicy.java

Author: vajda
Date: Wed Dec  7 16:26:14 2011
New Revision: 1211511

URL: http://svn.apache.org/viewvc?rev=1211511&view=rev
Log:
removed interface @overrides as they don't work on Java 1.5

Modified:
    lucene/pylucene/branches/branch_3x/java/org/apache/pylucene/index/PythonIndexDeletionPolicy.java

Modified: lucene/pylucene/branches/branch_3x/java/org/apache/pylucene/index/PythonIndexDeletionPolicy.java
URL: http://svn.apache.org/viewvc/lucene/pylucene/branches/branch_3x/java/org/apache/pylucene/index/PythonIndexDeletionPolicy.java?rev=1211511&r1=1211510&r2=1211511&view=diff
==============================================================================
--- lucene/pylucene/branches/branch_3x/java/org/apache/pylucene/index/PythonIndexDeletionPolicy.java (original)
+++ lucene/pylucene/branches/branch_3x/java/org/apache/pylucene/index/PythonIndexDeletionPolicy.java Wed Dec  7 16:26:14 2011
@@ -45,11 +45,9 @@ public class PythonIndexDeletionPolicy i
 
     public native void pythonDecRef();
 
-    @Override
     public native void onInit(List<? extends IndexCommit> commits)
         throws IOException;
 
-    @Override
     public native void onCommit(List<? extends IndexCommit> commits)
         throws IOException;
 }