mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Use generics
This commit is contained in:
parent
60d122b161
commit
cfe83c4ed9
1 changed files with 3 additions and 3 deletions
|
@ -18,19 +18,19 @@ public class GenericDevice extends DefaultGDBJtagDeviceImpl {
|
|||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.gdbjtag.core.jtagdevice.DefaultGDBJtagDeviceImpl#doDelay(int, java.util.Collection)
|
||||
*/
|
||||
public void doDelay(int delay, Collection commands) {
|
||||
public void doDelay(int delay, Collection <String>commands) {
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.gdbjtag.core.jtagdevice.DefaultGDBJtagDeviceImpl#doHalt(java.util.Collection)
|
||||
*/
|
||||
public void doHalt(Collection commands) {
|
||||
public void doHalt(Collection<String> commands) {
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see org.eclipse.cdt.debug.gdbjtag.core.jtagdevice.DefaultGDBJtagDeviceImpl#doReset(java.util.Collection)
|
||||
*/
|
||||
public void doReset(Collection commands) {
|
||||
public void doReset(Collection<String> commands) {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue