mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fixed warnings
This commit is contained in:
parent
8f418be80d
commit
e09763e581
2 changed files with 4 additions and 1 deletions
|
@ -373,6 +373,7 @@ public class GDBJtagDSFFinalLaunchSequence extends Sequence {
|
||||||
* Hook up to remote target
|
* Hook up to remote target
|
||||||
*/
|
*/
|
||||||
new Step() {
|
new Step() {
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
@Override
|
@Override
|
||||||
public void execute(RequestMonitor rm) {
|
public void execute(RequestMonitor rm) {
|
||||||
ILaunchConfiguration config = fLaunch.getLaunchConfiguration();
|
ILaunchConfiguration config = fLaunch.getLaunchConfiguration();
|
||||||
|
|
|
@ -73,6 +73,7 @@ public class GDBJtagDebugger extends AbstractGDBCDIDebugger {
|
||||||
return new GDBJtagCommandFactory(miVersion);
|
return new GDBJtagCommandFactory(miVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("deprecation")
|
||||||
protected void doStartSession(ILaunch launch, Session session, IProgressMonitor monitor) throws CoreException {
|
protected void doStartSession(ILaunch launch, Session session, IProgressMonitor monitor) throws CoreException {
|
||||||
SubMonitor submonitor = SubMonitor.convert(monitor, 100);
|
SubMonitor submonitor = SubMonitor.convert(monitor, 100);
|
||||||
|
|
||||||
|
@ -125,10 +126,11 @@ public class GDBJtagDebugger extends AbstractGDBCDIDebugger {
|
||||||
submonitor.subTask(Messages.getString("GDBJtagDebugger.2")); //$NON-NLS-1$
|
submonitor.subTask(Messages.getString("GDBJtagDebugger.2")); //$NON-NLS-1$
|
||||||
try {
|
try {
|
||||||
if (gdbJtagDevice instanceof IGDBJtagConnection) {
|
if (gdbJtagDevice instanceof IGDBJtagConnection) {
|
||||||
URI connection = new URI(config.getAttribute(IGDBJtagConstants.ATTR_CONNECTION, "")); //$NON-NLS-1$
|
URI connection = new URI(config.getAttribute(IGDBJtagConstants.ATTR_CONNECTION, IGDBJtagConstants.DEFAULT_CONNECTION));
|
||||||
IGDBJtagConnection device = (IGDBJtagConnection)gdbJtagDevice;
|
IGDBJtagConnection device = (IGDBJtagConnection)gdbJtagDevice;
|
||||||
device.doRemote(connection.getSchemeSpecificPart(), commands);
|
device.doRemote(connection.getSchemeSpecificPart(), commands);
|
||||||
} else {
|
} else {
|
||||||
|
// use deprecated methods tied to TCP/IP
|
||||||
String ipAddress = config.getAttribute(IGDBJtagConstants.ATTR_IP_ADDRESS, ""); //$NON-NLS-1$
|
String ipAddress = config.getAttribute(IGDBJtagConstants.ATTR_IP_ADDRESS, ""); //$NON-NLS-1$
|
||||||
int portNumber = config.getAttribute(IGDBJtagConstants.ATTR_PORT_NUMBER, 0);
|
int portNumber = config.getAttribute(IGDBJtagConstants.ATTR_PORT_NUMBER, 0);
|
||||||
gdbJtagDevice.doRemote(ipAddress, portNumber, commands);
|
gdbJtagDevice.doRemote(ipAddress, portNumber, commands);
|
||||||
|
|
Loading…
Add table
Reference in a new issue