mirror of https://github.com/apache/lucene.git
remove silly assert
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1344925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b103fa61e
commit
5f05354817
|
@ -109,7 +109,6 @@ public final class PositiveIntOutputs extends Outputs<Long> {
|
||||||
|
|
||||||
private boolean valid(Long o) {
|
private boolean valid(Long o) {
|
||||||
assert o != null;
|
assert o != null;
|
||||||
assert o instanceof Long;
|
|
||||||
assert o == NO_OUTPUT || o > 0;
|
assert o == NO_OUTPUT || o > 0;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue