From 09114186ba1c9dab89b4a2d848dcc7f7c81dff96 Mon Sep 17 00:00:00 2001 From: Yonik Seeley Date: Fri, 29 Aug 2008 15:39:52 +0000 Subject: [PATCH] javadoc fix git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@690306 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/lucene/util/OpenBitSet.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/lucene/util/OpenBitSet.java b/src/java/org/apache/lucene/util/OpenBitSet.java index cef76f3cf0f..b3a3af4937a 100644 --- a/src/java/org/apache/lucene/util/OpenBitSet.java +++ b/src/java/org/apache/lucene/util/OpenBitSet.java @@ -172,7 +172,6 @@ public class OpenBitSet extends DocIdSet implements Cloneable, Serializable { /** Returns true or false for the specified bit index - * The index should be less than the OpenBitSet size */ public boolean get(long index) { int i = (int)(index >> 6); // div 64 @@ -182,8 +181,9 @@ public class OpenBitSet extends DocIdSet implements Cloneable, Serializable { return (bits[i] & bitmask) != 0; } - /** Returns true or false for the specified bit index. Allows specifying - * an index outside the current size. */ + /** Returns true or false for the specified bit index. + * The index should be less than the OpenBitSet size. + */ public boolean fastGet(long index) { int i = (int)(index >> 6); // div 64 int bit = (int)index & 0x3f; // mod 64