1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

[cleanup] changed warning message to something less cryptic

This commit is contained in:
David Dykstal 2008-08-21 16:01:27 +00:00
parent eae2356377
commit bd5b6f617c

View file

@ -39,7 +39,7 @@ public class BadInitializer implements IRSEModelInitializer {
* @see org.eclipse.rse.core.IRSEModelInitializer#run(org.eclipse.core.runtime.IProgressMonitor)
*/
public IStatus run(IProgressMonitor monitor) {
IStatus result = new Status(IStatus.WARNING, "org.eclipse.rse.tests", "bwaahahaha");
IStatus result = new Status(IStatus.WARNING, "org.eclipse.rse.tests", "testing warnings generated during RSE initialization");
wasRun = true;
return result;
}