1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 318304: Allow for better overriding of the class.

This commit is contained in:
Marc Khouzam 2010-07-01 10:21:10 +00:00
parent ce299af047
commit 2c6f81a72d

View file

@ -72,7 +72,7 @@ import org.osgi.framework.BundleContext;
*/ */
public class GDBBackend extends AbstractDsfService implements IGDBBackend { public class GDBBackend extends AbstractDsfService implements IGDBBackend {
private ILaunchConfiguration fLaunchConfiguration; private final ILaunchConfiguration fLaunchConfiguration;
/* /*
* Parameters for launching GDB. * Parameters for launching GDB.
@ -168,7 +168,10 @@ public class GDBBackend extends AbstractDsfService implements IGDBBackend {
} }
private IPath getGDBPath() { /**
* @since 3.1
*/
protected IPath getGDBPath() {
return LaunchUtils.getGDBPath(fLaunchConfiguration); return LaunchUtils.getGDBPath(fLaunchConfiguration);
} }