1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-06 07:45:50 +02:00

[cleanup] add missing since tags

This commit is contained in:
Martin Oberhuber 2008-04-24 00:26:03 +00:00
parent 3a3006d128
commit 4eb5c19b7f

View file

@ -29,7 +29,6 @@
* David McKnight (IBM) - [220123] [api][dstore] Configurable timeout on irresponsiveness
* David McKnight (IBM) - [223204] [cleanup] fix broken nls strings in files.ui and others
* David Dykstal (IBM) - [225089][ssh][shells][api] Canceling connection leads to exception
* David McKnight (IBM) - [227406][api][dstore] need apis for getting buffer size in IDataStoreProvider
*******************************************************************************/
package org.eclipse.rse.connectorservice.dstore;
@ -1448,14 +1447,23 @@ public class DStoreConnectorService extends StandardConnectorService implements
}
/**
* @since org.eclipse.rse.connectorservice.dstore 3.0
*/
protected SystemMessage createSystemMessage(String msgId, int severity, String msg) {
return createSystemMessage(msgId, severity, msg, (String)null);
}
/**
* @since org.eclipse.rse.connectorservice.dstore 3.0
*/
protected SystemMessage createSystemMessage(String msgId, int severity, String msg, Throwable e) {
return new SimpleSystemMessage(Activator.PLUGIN_ID, msgId, severity, msg, e);
}
/**
* @since org.eclipse.rse.connectorservice.dstore 3.0
*/
protected SystemMessage createSystemMessage(String msgId, int severity, String msg, String msgDetails) {
return new SimpleSystemMessage(Activator.PLUGIN_ID, msgId, severity, msg, msgDetails);
}