1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-02 21:23:37 +02:00

Remove accidental stdout prints in InitRSEJob

This commit is contained in:
Martin Oberhuber 2007-08-07 10:05:28 +00:00
parent 42cc075be4
commit 66367ff7a3

View file

@ -90,7 +90,7 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi
public IStatus run(IProgressMonitor monitor)
{
System.err.println("InitRSEJob started"); //$NON-NLS-1$
//System.err.println("InitRSEJob started"); //$NON-NLS-1$
ISystemRegistry registry = getSystemRegistryInternal();
@ -135,7 +135,7 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi
}
}
System.err.println("InitRSEJob done"); //$NON-NLS-1$
//System.err.println("InitRSEJob done"); //$NON-NLS-1$
return Status.OK_STATUS;
}
}