mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 08:55:25 +02:00
Remove useless cast.
Change-Id: I696d4c689b5f688cb87db434e4a096da4263922b Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
parent
0946f7290e
commit
07a60e189b
1 changed files with 2 additions and 3 deletions
|
@ -50,9 +50,8 @@ public class CBreakpointGdbThreadFilterPage extends PropertyPage {
|
|||
ICBreakpoint bp = getBreakpoint();
|
||||
if (bp != null) {
|
||||
try {
|
||||
IDsfBreakpointExtension filter =
|
||||
(IDsfBreakpointExtension) bp.getExtension(
|
||||
GdbLaunchDelegate.GDB_DEBUG_MODEL_ID, CBreakpointGdbThreadsFilterExtension.class);
|
||||
IDsfBreakpointExtension filter = bp.getExtension(GdbLaunchDelegate.GDB_DEBUG_MODEL_ID,
|
||||
CBreakpointGdbThreadsFilterExtension.class);
|
||||
filter.initialize(bp);
|
||||
return filter;
|
||||
} catch (CoreException e) {}
|
||||
|
|
Loading…
Add table
Reference in a new issue