Skip to content

Commit

Permalink
Revert "null check before passing a new TypeBinding to requestor"
Browse files Browse the repository at this point in the history
This reverts commit 99781c9.
  • Loading branch information
Rob Stryker committed Dec 10, 2024
1 parent 0615a26 commit 7db06d2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,7 @@ public void accept(ISourceType[] sourceType, PackageBinding packageBinding,
IBinaryType binaryType = answer.getBinaryType();
if (binaryType != null) {
BinaryTypeBinding binding = lu.cacheBinaryType(binaryType, null);
if( binding != null )
requestor.acceptBinding(bindingKey, new TypeBinding(bindingResolver, binding));
requestor.acceptBinding(bindingKey, new TypeBinding(bindingResolver, binding));
}
}
}
Expand Down

0 comments on commit 7db06d2

Please sign in to comment.