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:
Michael McCandless 2012-05-31 21:59:33 +00:00
parent 9b103fa61e
commit 5f05354817
1 changed files with 0 additions and 1 deletions

View File

@ -109,7 +109,6 @@ public final class PositiveIntOutputs extends Outputs<Long> {
private boolean valid(Long o) {
assert o != null;
assert o instanceof Long;
assert o == NO_OUTPUT || o > 0;
return true;
}