Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: apache/jena
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cbf563c549aaf064bb4da20cd59623f2b88d08a2
Choose a base ref
..
head repository: apache/jena
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1b9aaec08de5ee298f4f254c6e753ff25d6f8d7d
Choose a head ref
Showing with 1 addition and 2 deletions.
  1. +1 −2 jena-arq/src/main/java/org/apache/jena/sparql/algebra/Algebra.java
Original file line number Diff line number Diff line change
@@ -178,9 +178,8 @@ public static boolean compatible(Binding bindingLeft, Binding bindingRight, Iter
while (vars.hasNext() ) {
Var v = vars.next();
Node nLeft = bindingLeft.get(v);
if ( nLeft == null ) {
if ( nLeft == null )
continue;
}

Node nRight = bindingRight.get(v);
if ( nRight != null && !nRight.equals(nLeft) )