1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

Update to use generics

Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2015-04-15 13:19:11 -04:00
parent 860e0af8c8
commit 39fa80d9de

View file

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011 Anton Gorenkov
* Copyright (c) 2011, 2015 Anton Gorenkov and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -26,9 +26,8 @@ import org.eclipse.debug.core.model.RuntimeProcess;
*/
public class GdbProcessFactory implements IProcessFactory {
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public IProcess newProcess(ILaunch launch, Process process, String label, Map attributes) {
public IProcess newProcess(ILaunch launch, Process process, String label, Map<String, String> attributes) {
if (attributes != null) {
if (IGdbDebugConstants.GDB_PROCESS_CREATION_VALUE.equals(attributes.get(IGdbDebugConstants.PROCESS_TYPE_CREATION_ATTR))) {
return new GDBProcess(launch, process, label, attributes);