You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2012/06/01 00:00:05 UTC

svn commit: r1344926 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/core/ lucene/core/src/java/org/apache/lucene/util/fst/PositiveIntOutputs.java

Author: mikemccand
Date: Thu May 31 22:00:04 2012
New Revision: 1344926

URL: http://svn.apache.org/viewvc?rev=1344926&view=rev
Log:
remove silly assert

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/core/   (props changed)
    lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/fst/PositiveIntOutputs.java

Modified: lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/fst/PositiveIntOutputs.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/fst/PositiveIntOutputs.java?rev=1344926&r1=1344925&r2=1344926&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/fst/PositiveIntOutputs.java (original)
+++ lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/util/fst/PositiveIntOutputs.java Thu May 31 22:00:04 2012
@@ -109,7 +109,6 @@ public final class PositiveIntOutputs ex
 
   private boolean valid(Long o) {
     assert o != null;
-    assert o instanceof Long;
     assert o == NO_OUTPUT || o > 0;
     return true;
   }