Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/org.eclipse.linuxtools.profiling.provider.tests/src/org/eclipse/linuxtools/profiling/provider/tests/stubby/StubbyLaunchShortcut.java')
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.provider.tests/src/org/eclipse/linuxtools/profiling/provider/tests/stubby/StubbyLaunchShortcut.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/profiling/org.eclipse.linuxtools.profiling.provider.tests/src/org/eclipse/linuxtools/profiling/provider/tests/stubby/StubbyLaunchShortcut.java b/profiling/org.eclipse.linuxtools.profiling.provider.tests/src/org/eclipse/linuxtools/profiling/provider/tests/stubby/StubbyLaunchShortcut.java
index 3ab0723955..f53fe0b6e4 100644
--- a/profiling/org.eclipse.linuxtools.profiling.provider.tests/src/org/eclipse/linuxtools/profiling/provider/tests/stubby/StubbyLaunchShortcut.java
+++ b/profiling/org.eclipse.linuxtools.profiling.provider.tests/src/org/eclipse/linuxtools/profiling/provider/tests/stubby/StubbyLaunchShortcut.java
@@ -16,15 +16,15 @@ import org.eclipse.linuxtools.profiling.launch.ProfileLaunchShortcut;
public class StubbyLaunchShortcut extends ProfileLaunchShortcut {
- @Override
- protected ILaunchConfigurationType getLaunchConfigType() {
- return getLaunchManager().getLaunchConfigurationType("org.eclipse.linuxtools.profiling.stubby.launchConfigurationType"); //$NON-NLS-1$
- }
+ @Override
+ protected ILaunchConfigurationType getLaunchConfigType() {
+ return getLaunchManager().getLaunchConfigurationType("org.eclipse.linuxtools.profiling.stubby.launchConfigurationType"); //$NON-NLS-1$
+ }
- @Override
- protected void setDefaultProfileAttributes(ILaunchConfigurationWorkingCopy wc) {
- // Set this for testing purposes
- wc.setAttribute("foo", "bar"); //$NON-NLS-1$ //$NON-NLS-2$
- }
+ @Override
+ protected void setDefaultProfileAttributes(ILaunchConfigurationWorkingCopy wc) {
+ // Set this for testing purposes
+ wc.setAttribute("foo", "bar"); //$NON-NLS-1$ //$NON-NLS-2$
+ }
}

Back to the top