1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Bug 302595, return null for default.

This commit is contained in:
Ken Ryall 2010-03-10 21:23:34 +00:00
parent 2776239295
commit 3983c6bb53

View file

@ -45,7 +45,7 @@ public class NumberFormatDetailPaneFactory implements IDetailPaneFactory {
* @see org.eclipse.debug.ui.IDetailPaneFactory#getDefaultDetailPane(java.util.Set, org.eclipse.jface.viewers.IStructuredSelection)
*/
public String getDefaultDetailPane(IStructuredSelection selection) {
return NumberFormatDetailPane.ID;
return null; // Allow competing detail pane factories to override this one
}
/* (non-Javadoc)