Skip to content

Commit

Permalink
add final
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed Sep 1, 2014
1 parent a7f9c9d commit bd6549e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/com/github/davidmoten/rtree/Backpressure.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
class Backpressure {

static <T> ImmutableStack<NodePosition<T>> search(Node<T> node,
Func1<? super Geometry, Boolean> condition, Subscriber<? super Entry<T>> subscriber,
ImmutableStack<NodePosition<T>> stack, long request) {
final Func1<? super Geometry, Boolean> condition,
final Subscriber<? super Entry<T>> subscriber, ImmutableStack<NodePosition<T>> stack,
long request) {
while (true) {
Preconditions.checkArgument(!stack.isEmpty());
NodePosition<T> np = stack.peek();
Expand Down

0 comments on commit bd6549e

Please sign in to comment.