1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 01:36:01 +02:00

Bug 326137: Allow DSF-GDB attach session to work without a project or binary (add missing @since in new constructor)

This commit is contained in:
John Cortell 2010-09-27 15:10:04 +00:00
parent dc6f09e404
commit 3bbf54e9da

View file

@ -65,6 +65,9 @@ public class GdbLaunchDelegate extends AbstractCLaunchDelegate2
super();
}
/**
* @since 4.0
*/
public GdbLaunchDelegate(boolean requireCProject) {
super(requireCProject);
}