From 170e654b4796bad1453ae85a427b97317d67a69a Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Tue, 20 Nov 2018 16:20:42 +0000 Subject: Bug 540373: Cleanup: Format & Remove trailing whitespace This was done by selecting all projects in Eclipse then Source -> Clean Up... -> choosing: - Format source code - Remove trailing white spaces on all lines and completing the wizard Change-Id: I63685372c6bcc67719bcf145123bcb72e5b00394 --- .../eclipse/cdt/dsf/debug/ui/actions/DsfSteppingModeTarget.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/actions/DsfSteppingModeTarget.java') diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/actions/DsfSteppingModeTarget.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/actions/DsfSteppingModeTarget.java index 641c2a459c8..f1855108ee0 100644 --- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/actions/DsfSteppingModeTarget.java +++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/actions/DsfSteppingModeTarget.java @@ -23,17 +23,17 @@ import org.eclipse.ui.PartInitException; import org.eclipse.ui.PlatformUI; /** - * + * * @since 1.0 */ public class DsfSteppingModeTarget implements ISteppingModeTarget, ITargetProperties { - private static final String ID_DISASSEMBLY_VIEW= "org.eclipse.cdt.dsf.debug.ui.disassembly.view"; //$NON-NLS-1$ + private static final String ID_DISASSEMBLY_VIEW = "org.eclipse.cdt.dsf.debug.ui.disassembly.view"; //$NON-NLS-1$ private final Preferences fPreferences; public DsfSteppingModeTarget() { - fPreferences= new Preferences(); + fPreferences = new Preferences(); fPreferences.setDefault(PREF_INSTRUCTION_STEPPING_MODE, false); } @@ -45,7 +45,7 @@ public class DsfSteppingModeTarget implements ISteppingModeTarget, ITargetProper fPreferences.setValue(PREF_INSTRUCTION_STEPPING_MODE, enabled); if (enabled) { try { - final IWorkbenchWindow activeWorkbenchWindow= PlatformUI.getWorkbench().getActiveWorkbenchWindow(); + final IWorkbenchWindow activeWorkbenchWindow = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); if (activeWorkbenchWindow != null && activeWorkbenchWindow.getActivePage() != null) { activeWorkbenchWindow.getActivePage().showView(ID_DISASSEMBLY_VIEW); } -- cgit v1.2.3