1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00

Deprecated logErrorMessage method.

This commit is contained in:
Sergey Prigogin 2011-04-10 23:55:53 +00:00
parent fb3a4c8d26
commit 2fefb9f6ab

View file

@ -327,6 +327,10 @@ public class CUIPlugin extends AbstractUIPlugin {
log(message, null);
}
/**
* @deprecated Use {@link #logError(String)}
*/
@Deprecated
public void logErrorMessage(String message) {
log(new Status(IStatus.ERROR, PLUGIN_ID, ICStatusConstants.INTERNAL_ERROR, message, null));
}