mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
no code change - cleanup compiler log warnings
This commit is contained in:
parent
872a34e811
commit
e1bb75eb34
4 changed files with 1 additions and 14 deletions
|
@ -19,13 +19,11 @@ import org.eclipse.cdt.debug.internal.core.model.CDebugTarget;
|
||||||
import org.eclipse.cdt.debug.internal.core.model.CFormattedMemoryBlock;
|
import org.eclipse.cdt.debug.internal.core.model.CFormattedMemoryBlock;
|
||||||
import org.eclipse.core.resources.IFile;
|
import org.eclipse.core.resources.IFile;
|
||||||
import org.eclipse.core.runtime.CoreException;
|
import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.core.runtime.IPath;
|
|
||||||
import org.eclipse.core.runtime.IStatus;
|
import org.eclipse.core.runtime.IStatus;
|
||||||
import org.eclipse.core.runtime.Status;
|
import org.eclipse.core.runtime.Status;
|
||||||
import org.eclipse.debug.core.DebugException;
|
import org.eclipse.debug.core.DebugException;
|
||||||
import org.eclipse.debug.core.ILaunch;
|
import org.eclipse.debug.core.ILaunch;
|
||||||
import org.eclipse.debug.core.model.IDebugTarget;
|
import org.eclipse.debug.core.model.IDebugTarget;
|
||||||
import org.eclipse.debug.core.model.IExpression;
|
|
||||||
import org.eclipse.debug.core.model.IProcess;
|
import org.eclipse.debug.core.model.IProcess;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -24,7 +24,6 @@ import org.eclipse.cdt.debug.core.cdi.ICDILocation;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDIBreakpoint;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDIExceptionpoint;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDILocationBreakpoint;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDIWatchpoint;
|
||||||
import org.eclipse.cdt.debug.mi.core.MIException;
|
import org.eclipse.cdt.debug.mi.core.MIException;
|
||||||
import org.eclipse.cdt.debug.mi.core.MIFormat;
|
import org.eclipse.cdt.debug.mi.core.MIFormat;
|
||||||
|
@ -489,9 +488,6 @@ public class BreakpointManager extends Manager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager#getBreakpoints(ICDITarget)
|
|
||||||
*/
|
|
||||||
public ICDIBreakpoint[] getBreakpoints(Target target) throws CDIException {
|
public ICDIBreakpoint[] getBreakpoints(Target target) throws CDIException {
|
||||||
List list = (List)breakMap.get(target);
|
List list = (List)breakMap.get(target);
|
||||||
if (list != null) {
|
if (list != null) {
|
||||||
|
|
|
@ -13,6 +13,7 @@ package org.eclipse.cdt.debug.mi.internal.ui;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.Observable;
|
import java.util.Observable;
|
||||||
import java.util.Observer;
|
import java.util.Observer;
|
||||||
|
|
||||||
import org.eclipse.cdt.debug.mi.core.IMILaunchConfigurationConstants;
|
import org.eclipse.cdt.debug.mi.core.IMILaunchConfigurationConstants;
|
||||||
import org.eclipse.cdt.debug.mi.ui.IMILaunchConfigurationComponent;
|
import org.eclipse.cdt.debug.mi.ui.IMILaunchConfigurationComponent;
|
||||||
import org.eclipse.cdt.debug.mi.ui.MIUIUtils;
|
import org.eclipse.cdt.debug.mi.ui.MIUIUtils;
|
||||||
|
@ -21,7 +22,6 @@ import org.eclipse.core.runtime.CoreException;
|
||||||
import org.eclipse.debug.core.ILaunchConfiguration;
|
import org.eclipse.debug.core.ILaunchConfiguration;
|
||||||
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
|
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
|
||||||
import org.eclipse.debug.ui.AbstractLaunchConfigurationTab;
|
import org.eclipse.debug.ui.AbstractLaunchConfigurationTab;
|
||||||
import org.eclipse.debug.ui.ILaunchConfigurationTab;
|
|
||||||
import org.eclipse.swt.SWT;
|
import org.eclipse.swt.SWT;
|
||||||
import org.eclipse.swt.events.ModifyEvent;
|
import org.eclipse.swt.events.ModifyEvent;
|
||||||
import org.eclipse.swt.events.ModifyListener;
|
import org.eclipse.swt.events.ModifyListener;
|
||||||
|
@ -71,9 +71,6 @@ public class GDBDebuggerPage extends AbstractLaunchConfigurationTab implements O
|
||||||
fSolibBlock.setDefaults( configuration );
|
fSolibBlock.setDefaults( configuration );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @see ILaunchConfigurationTab#isValid(ILaunchConfiguration)
|
|
||||||
*/
|
|
||||||
public boolean isValid( ILaunchConfiguration launchConfig ) {
|
public boolean isValid( ILaunchConfiguration launchConfig ) {
|
||||||
boolean valid = fGDBCommandText.getText().length() != 0;
|
boolean valid = fGDBCommandText.getText().length() != 0;
|
||||||
if ( valid ) {
|
if ( valid ) {
|
||||||
|
|
|
@ -13,7 +13,6 @@ package org.eclipse.cdt.debug.mi.internal.ui.actions;
|
||||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||||
import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
import org.eclipse.cdt.debug.core.cdi.ICDISession;
|
||||||
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
import org.eclipse.cdt.debug.core.cdi.model.ICDITarget;
|
||||||
import org.eclipse.cdt.debug.internal.ui.actions.AbstractDebugActionDelegate;
|
|
||||||
import org.eclipse.cdt.debug.mi.core.MIPlugin;
|
import org.eclipse.cdt.debug.mi.core.MIPlugin;
|
||||||
import org.eclipse.cdt.debug.mi.core.cdi.Session;
|
import org.eclipse.cdt.debug.mi.core.cdi.Session;
|
||||||
import org.eclipse.cdt.debug.mi.core.cdi.SharedLibraryManager;
|
import org.eclipse.cdt.debug.mi.core.cdi.SharedLibraryManager;
|
||||||
|
@ -213,9 +212,6 @@ public class SetAutoSolibActionDelegate implements IViewActionDelegate, ISelecti
|
||||||
return ActionMessages.getString( "SetAutoSolibActionDelegate.0" ); //$NON-NLS-1$
|
return ActionMessages.getString( "SetAutoSolibActionDelegate.0" ); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @see AbstractDebugActionDelegate#getErrorDialogMessage()
|
|
||||||
*/
|
|
||||||
protected String getErrorDialogMessage() {
|
protected String getErrorDialogMessage() {
|
||||||
return ActionMessages.getString( "SetAutoSolibActionDelegate.1" ); //$NON-NLS-1$
|
return ActionMessages.getString( "SetAutoSolibActionDelegate.1" ); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue