You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2015/10/09 12:35:16 UTC

svn commit: r1707690 - /lucene/dev/branches/branch_5x/lucene/core/src/java/org/apache/lucene/search/Query.java

Author: jpountz
Date: Fri Oct  9 10:35:15 2015
New Revision: 1707690

URL: http://svn.apache.org/viewvc?rev=1707690&view=rev
Log:
LUCENE-6467: Fix compilation.

Modified:
    lucene/dev/branches/branch_5x/lucene/core/src/java/org/apache/lucene/search/Query.java

Modified: lucene/dev/branches/branch_5x/lucene/core/src/java/org/apache/lucene/search/Query.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/lucene/core/src/java/org/apache/lucene/search/Query.java?rev=1707690&r1=1707689&r2=1707690&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/lucene/core/src/java/org/apache/lucene/search/Query.java (original)
+++ lucene/dev/branches/branch_5x/lucene/core/src/java/org/apache/lucene/search/Query.java Fri Oct  9 10:35:15 2015
@@ -118,6 +118,6 @@ public abstract class Query implements C
     if (getClass() != obj.getClass())
       return false;
     Query other = (Query) obj;
-    return Float.floatToIntBits(boost) == Float.floatToIntBits(other.boost)
+    return Float.floatToIntBits(boost) == Float.floatToIntBits(other.boost);
   }
 }