From f8b81fb30e1200796dc8a30f9a3b0cd240b0c6ce Mon Sep 17 00:00:00 2001 From: aboyko Date: Tue, 13 Feb 2024 14:48:44 -0500 Subject: [PATCH] Correction to add starters compare view --- .../boot/wizard/starters/eclipse/ResourceCompareInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclipse-extensions/org.springframework.ide.eclipse.boot.wizard/src/org/springframework/ide/eclipse/boot/wizard/starters/eclipse/ResourceCompareInput.java b/eclipse-extensions/org.springframework.ide.eclipse.boot.wizard/src/org/springframework/ide/eclipse/boot/wizard/starters/eclipse/ResourceCompareInput.java index 79592b357..a9af7b690 100644 --- a/eclipse-extensions/org.springframework.ide.eclipse.boot.wizard/src/org/springframework/ide/eclipse/boot/wizard/starters/eclipse/ResourceCompareInput.java +++ b/eclipse-extensions/org.springframework.ide.eclipse.boot.wizard/src/org/springframework/ide/eclipse/boot/wizard/starters/eclipse/ResourceCompareInput.java @@ -696,7 +696,7 @@ public class ResourceCompareInput extends CompareEditorInput { method = TextMergeViewer.class.getDeclaredMethod("copy", boolean.class); } method.setAccessible(true); - method.invoke(contentViewer, false); + method.invoke(contentViewer, true); contentViewer.flush(new NullProgressMonitor()); n.setState(DiffNodeState.ALL); } catch (Exception e) {