Skip to content

Commit

Permalink
fixed since tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudenw committed Jul 7, 2023
1 parent 7732ede commit 9d8282c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* if the {@code ary} is exhausted, the subsequent calls to {@code test} are executed with a zero value.
* If the calls to {@code test} do not exhaust the {@code ary} the {@code forEachRemaining} method can be called to
* execute the @code{text} with a zero value for each remaining {@code idx} value.
* @Since 4.5
* @since 4.5
*/
class CountingLongPredicate implements LongPredicate {
private int idx = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* {@code null} value for each remaining {@code idx} value.
*
* @param <T> the type of object being compared.
* @Since 4.5
* @since 4.5
*/
class CountingPredicate<T> implements Predicate<T> {
private int idx = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* removes them. It also checks it a new layer should be added, and if so adds
* it and sets the {@code target} before the operation.</li>
* </ul>
* @Since 4.5
* @since 4.5
*/
public class LayeredBloomFilter implements BloomFilter, BloomFilterProducer {
private final Shape shape;
Expand Down

0 comments on commit 9d8282c

Please sign in to comment.