Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -738,10 +738,8 @@ private LeftEditorInputAndRightStreamContentAccessor canShowInUnifiedDiff(Compar
if (!(res instanceof ICompareInput compareInput)) {
return null;
}
ITypedElement ancestor = compareInput.getAncestor();
if (ancestor != null) {
return null;
}
// A common ancestor (3-way input) is ignored; the unified diff renders a
// plain left-vs-right overlay.
ITypedElement left = compareInput.getLeft();
if (left == null) {
return null;
Expand Down
Loading