From 68e0f1c73808ca2c6cbdbedfd1fe14559466a892 Mon Sep 17 00:00:00 2001 From: Simon Willnauer Date: Fri, 21 Sep 2012 09:45:03 +0000 Subject: [PATCH] LUCENE-4410: fix spelling error git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1388395 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/java/org/apache/lucene/search/FilteredQuery.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lucene/core/src/java/org/apache/lucene/search/FilteredQuery.java b/lucene/core/src/java/org/apache/lucene/search/FilteredQuery.java index 62115d4f749..eceb0ff6279 100644 --- a/lucene/core/src/java/org/apache/lucene/search/FilteredQuery.java +++ b/lucene/core/src/java/org/apache/lucene/search/FilteredQuery.java @@ -427,7 +427,7 @@ public class FilteredQuery extends Query { * Note: This strategy uses the filter to lead the iteration. *

*/ - public static final FilterStrategy LEAP_FROG_FILTER_FIRST_STRATEGY = new LeapFrogFilterStragey(false); + public static final FilterStrategy LEAP_FROG_FILTER_FIRST_STRATEGY = new LeapFrogFilterStrategy(false); /** * A filter strategy that uses a "leap-frog" approach (also called "zig-zag join"). @@ -439,7 +439,7 @@ public class FilteredQuery extends Query { * Note: This strategy uses the query to lead the iteration. *

*/ - public static final FilterStrategy LEAP_FROG_QUERY_FIRST_STRATEGY = new LeapFrogFilterStragey(true); + public static final FilterStrategy LEAP_FROG_QUERY_FIRST_STRATEGY = new LeapFrogFilterStrategy(true); /** * A filter strategy that advances the Query or rather its {@link Scorer} first and consults the @@ -544,11 +544,11 @@ public class FilteredQuery extends Query { } } - private static final class LeapFrogFilterStragey extends FilterStrategy { + private static final class LeapFrogFilterStrategy extends FilterStrategy { private final boolean scorerFirst; - private LeapFrogFilterStragey(boolean scorerFirst) { + private LeapFrogFilterStrategy(boolean scorerFirst) { this.scorerFirst = scorerFirst; } @Override