Skip to content

Commit 877b1c9

Browse files
jasperiqJervenBolleman
authored andcommitted
GH-5286 Fixed typo
1 parent 796334c commit 877b1c9

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/iterator

core/queryalgebra/evaluation/src/main/java/org/eclipse/rdf4j/query/algebra/evaluation/iterator/LeftJoinIterator.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ public LeftJoinIterator(EvaluationStrategy strategy, LeftJoin join, BindingSet b
7272
}
7373

7474
public LeftJoinIterator(QueryEvaluationStep left, QueryEvaluationStep right, QueryValueEvaluationStep joinCondition,
75-
BindingSet bindings, Set<String> scopeBindingNamse)
75+
BindingSet bindings, Set<String> scopeBindingNames)
7676
throws QueryEvaluationException {
77-
this.scopeBindingNames = scopeBindingNamse;
77+
this.scopeBindingNames = scopeBindingNames;
7878

7979
leftIter = left.evaluate(bindings);
8080

@@ -87,8 +87,8 @@ public LeftJoinIterator(QueryEvaluationStep left, QueryEvaluationStep right, Que
8787
}
8888

8989
public LeftJoinIterator(CloseableIteration<BindingSet> leftIter, QueryEvaluationStep prepareRightArg,
90-
QueryValueEvaluationStep joinCondition, Set<String> scopeBindingNamse) {
91-
this.scopeBindingNames = scopeBindingNamse;
90+
QueryValueEvaluationStep joinCondition, Set<String> scopeBindingNames) {
91+
this.scopeBindingNames = scopeBindingNames;
9292
this.leftIter = leftIter;
9393
this.rightIter = null;
9494
this.prepareRightArg = prepareRightArg;
@@ -97,14 +97,14 @@ public LeftJoinIterator(CloseableIteration<BindingSet> leftIter, QueryEvaluation
9797

9898
public static CloseableIteration<BindingSet> getInstance(QueryEvaluationStep left,
9999
QueryEvaluationStep prepareRightArg, QueryValueEvaluationStep joinCondition, BindingSet bindings,
100-
Set<String> scopeBindingNamse) {
100+
Set<String> scopeBindingNames) {
101101

102102
CloseableIteration<BindingSet> leftIter = left.evaluate(bindings);
103103

104104
if (leftIter == QueryEvaluationStep.EMPTY_ITERATION) {
105105
return leftIter;
106106
} else {
107-
return new LeftJoinIterator(leftIter, prepareRightArg, joinCondition, scopeBindingNamse);
107+
return new LeftJoinIterator(leftIter, prepareRightArg, joinCondition, scopeBindingNames);
108108
}
109109

110110
}

0 commit comments

Comments
 (0)